me
/
guix
Archived
1
0
Fork 0

gnu: json-glib: Add missing 'bash-minimal' input.

* gnu/packages/gnome.scm (json-glib)[inputs]: Add "bash-minimal" when
  cross-compiling (for wrapper scripts).
master
Maxime Devos 2021-08-25 10:36:59 +02:00 committed by Mathieu Othacehe
parent 8bf0c60086
commit bb4293469b
No known key found for this signature in database
GPG Key ID: 8354763531769CA6
1 changed files with 5 additions and 0 deletions

View File

@ -4628,6 +4628,11 @@ configuration storage systems.")
("gtk-doc" ,gtk-doc)
("pkg-config" ,pkg-config)
("xsltproc" ,libxslt)))
(inputs
;; TODO(core-updates): Make this input unconditional.
(if (%current-target-system)
`(("bash-minimal" ,bash-minimal))
'()))
(propagated-inputs
`(("glib" ,glib))) ;according to json-glib-1.0.pc
(home-page "https://wiki.gnome.org/Projects/JsonGlib")