diff options
author | Maxime Devos <maximedevos@telenet.be> | 2021-08-25 16:06:06 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-09-20 11:15:09 +0000 |
commit | 99eff8138bf9f95cbfafefdec49efaf315b14bd4 (patch) | |
tree | 917bd370c6d8a8c5c05946b009d4bd3fdc96a645 /gnu | |
parent | 26a336c20bd9f274c2117745828b514ceda18112 (diff) | |
download | guix-99eff8138bf9f95cbfafefdec49efaf315b14bd4.tar guix-99eff8138bf9f95cbfafefdec49efaf315b14bd4.tar.gz |
gnu: gdk-pixbuf: Add bash-minimal input when cross-compiling.
* gnu/packages/gtk.scm
(gdk-pixbuf)[inputs]: Add "bash-minimal" when cross-compiling.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gtk.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 017fd608b4..cf51d80b5d 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))) |