aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2022-10-13 11:19:10 +0100
committerChristopher Baines <mail@cbaines.net>2022-10-13 11:19:10 +0100
commit2df5a0771bf2336e72fe4150a7962b079c463b8b (patch)
tree081e7f30ca9139cd31119e6c31a485d0526b5792
parentcc58a0c62739d93c1d22a9930f11abdb0bd7ac04 (diff)
downloadguix-include-aarch64-in-librsvg-for-system.tar
guix-include-aarch64-in-librsvg-for-system.tar.gz
gnu: gnome: Include aarch64 in librsvg-for-system.include-aarch64-in-librsvg-for-system
Since the staging merge, librsvg has been buildable for aarch64. * gnu/packages/gnome.scm (librsvg-for-system): Use librsvg for aarch64.
-rw-r--r--gnu/packages/gnome.scm6
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 09a991b14c..ff9d95c244 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))