diff options
author | Maxime Devos <maximedevos@telenet.be> | 2021-08-25 10:36:59 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-09-20 11:15:07 +0000 |
commit | bb4293469b070430893842c115ef2018aee8946c (patch) | |
tree | 1f29e882e19279064bf6dd5199a4efa0df50b735 /gnu | |
parent | 8bf0c60086d77ba621daa3556995d9098f1288ed (diff) | |
download | guix-bb4293469b070430893842c115ef2018aee8946c.tar.gz |
gnu: json-glib: Add missing 'bash-minimal' input.
* gnu/packages/gnome.scm (json-glib)[inputs]: Add "bash-minimal" when cross-compiling (for wrapper scripts).
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gnome.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 0b2325bc44..b66456dc6e 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -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") |