me
/
guix
Archived
1
0
Fork 0

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

* gnu/packages/gtk.scm
  (gdk-pixbuf)[inputs]: Add "bash-minimal" when cross-compiling.
master
Maxime Devos 2021-08-25 16:06:06 +02:00 committed by Mathieu Othacehe
parent 26a336c20b
commit 99eff8138b
No known key found for this signature in database
GPG Key ID: 8354763531769CA6
1 changed files with 4 additions and 1 deletions

View File

@ -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)))