mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-03 16:57:55 +01:00
gnu: pango: Add bash-minimal input when cross-compiling.
* gnu/packages/gtk.scm (pango)[inputs]: Add "bash-minimal" when cross-compiling.
This commit is contained in:
parent
99eff8138b
commit
d1737d44e6
1 changed files with 5 additions and 1 deletions
|
@ -383,7 +383,11 @@ (define-public pango
|
|||
("libxft" ,libxft)
|
||||
("libxrender" ,libxrender)))
|
||||
(inputs
|
||||
`(("zlib" ,zlib)))
|
||||
;; TODO(core-updates): Unconditionally add "bash-minimal"
|
||||
`(,@(if (%current-target-system)
|
||||
`(("bash-minimal" ,bash-minimal)) ; for glib-or-gtk-wrap
|
||||
'())
|
||||
("zlib" ,zlib)))
|
||||
(native-inputs
|
||||
`(("glib" ,glib "bin") ; glib-mkenums, etc.
|
||||
("gobject-introspection" ,gobject-introspection) ; g-ir-compiler, etc.
|
||||
|
|
Loading…
Reference in a new issue