mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
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.
This commit is contained in:
parent
dde299df48
commit
754f260753
1 changed files with 4 additions and 2 deletions
|
@ -3753,8 +3753,10 @@ (define* (librsvg-for-system #:optional
|
|||
(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))
|
||||
|
||||
|
|
Loading…
Reference in a new issue