gnu: gdk-pixbuf: Add bash-minimal input when cross-compiling.
* gnu/packages/gtk.scm (gdk-pixbuf)[inputs]: Add "bash-minimal" when cross-compiling.
This commit is contained in:
parent
26a336c20b
commit
99eff8138b
1 changed files with 4 additions and 1 deletions
|
@ -668,7 +668,10 @@ highlighting and other features typical of a source code editor.")
|
||||||
;; Used for testing and required at runtime.
|
;; Used for testing and required at runtime.
|
||||||
("shared-mime-info" ,shared-mime-info)))
|
("shared-mime-info" ,shared-mime-info)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("jasper" ,jasper)
|
`(,@(if (%current-target-system)
|
||||||
|
`(("bash-minimal" ,bash-minimal)) ; for glib-or-gtk-wrap
|
||||||
|
'())
|
||||||
|
("jasper" ,jasper)
|
||||||
("libjpeg" ,libjpeg-turbo)
|
("libjpeg" ,libjpeg-turbo)
|
||||||
("libpng" ,libpng)
|
("libpng" ,libpng)
|
||||||
("libtiff" ,libtiff)))
|
("libtiff" ,libtiff)))
|
||||||
|
|
Reference in a new issue