guix-commits
[Top][All Lists]
Advanced

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

50/52: gnu: gdk-pixbuf: Add bash-minimal input when cross-compiling.


From: guix-commits
Subject: 50/52: gnu: gdk-pixbuf: Add bash-minimal input when cross-compiling.
Date: Mon, 20 Sep 2021 07:19:41 -0400 (EDT)

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

commit 99eff8138bf9f95cbfafefdec49efaf315b14bd4
Author: Maxime Devos <maximedevos@telenet.be>
AuthorDate: Wed Aug 25 16:06:06 2021 +0200

    gnu: gdk-pixbuf: Add bash-minimal input when cross-compiling.
    
    * gnu/packages/gtk.scm
      (gdk-pixbuf)[inputs]: Add "bash-minimal" when cross-compiling.
---
 gnu/packages/gtk.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 017fd60..cf51d80 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -668,7 +668,10 @@ highlighting and other features typical of a source code 
editor.")
        ;; Used for testing and required at runtime.
        ("shared-mime-info" ,shared-mime-info)))
     (inputs
-     `(("jasper" ,jasper)
+     `(,@(if (%current-target-system)
+             `(("bash-minimal" ,bash-minimal)) ; for glib-or-gtk-wrap
+             '())
+       ("jasper" ,jasper)
        ("libjpeg" ,libjpeg-turbo)
        ("libpng"  ,libpng)
        ("libtiff" ,libtiff)))



reply via email to

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