guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

06/06: gnu: gnome: Include aarch64 in librsvg-for-system.


From: guix-commits
Subject: 06/06: gnu: gnome: Include aarch64 in librsvg-for-system.
Date: Thu, 3 Nov 2022 12:41:36 -0400 (EDT)

cbaines pushed a commit to branch master
in repository guix.

commit 754f260753fb6ebe28325616bc08336a184e4621
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Thu Oct 13 11:19:10 2022 +0100

    gnu: gnome: Include aarch64 in librsvg-for-system.
    
    As the current librsvg currently builds for aarch64-linux as well as
    x86_64-linux.
    
    * gnu/packages/gnome.scm (librsvg-for-system): Use librsvg for aarch64.
---
 gnu/packages/gnome.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 40c1379207..1246ac22b3 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -3753,8 +3753,10 @@ diagrams.")
                              (system (or (%current-target-system)
                                          (%current-system))))
   ;; Since librsvg 2.50 depends on Rust, and Rust is only correctly supported
-  ;; on x86_64 so far, use the ancient C version on other platforms (FIXME).
-  (if (string-prefix? "x86_64-" system)
+  ;; on x86_64 and aarch64 so far, use the ancient C version on other
+  ;; platforms (FIXME).
+  (if (or (string-prefix? "x86_64-" system)
+          (string-prefix? "aarch64-" system))
       librsvg
       librsvg-2.40))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]