guix-commits
[Top][All Lists]
Advanced

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

01/04: gnu: GNOME: Only include Eye of GNOME on x86_64-linux.


From: guix-commits
Subject: 01/04: gnu: GNOME: Only include Eye of GNOME on x86_64-linux.
Date: Tue, 21 Apr 2020 18:09:30 -0400 (EDT)

mbakke pushed a commit to branch core-updates
in repository guix.

commit ce784e6c2891b585d93ab68909519752685d0e3c
Author: Marius Bakke <address@hidden>
AuthorDate: Sun Apr 19 17:58:03 2020 +0200

    gnu: GNOME: Only include Eye of GNOME on x86_64-linux.
    
    * gnu/packages/gnome.scm (gnome)[propagated-inputs]: Conditionally add EOG.
---
 gnu/packages/gnome.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index fbd4c5e..fb8c8b9 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -7828,7 +7828,11 @@ world.")
      ;; GNOME-Core-Utilities
        ("baobab" ,baobab)
        ("cheese" ,cheese)
-       ("eog" ,eog)
+       ;; XXX: EoG requires librsvg-next, which depends on Rust, which 
currently
+       ;; only works on x86_64, so exclude it on other architectures.
+       ,@(if (string-prefix? "x86_64" (%current-system))
+             `(("eog" ,eog))
+             '())
        ("epiphany" ,epiphany)
        ("evince" ,evince)
        ("file-roller" ,file-roller)



reply via email to

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