diff options
author | Maxime Devos <maximedevos@telenet.be> | 2021-08-25 14:07:22 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-09-20 11:15:08 +0000 |
commit | 4823adb26b5022193df83315df6734cfb5d491d1 (patch) | |
tree | 866f40385f5d2c44d6c399a6515dcb4671721201 /gnu | |
parent | b9ae6181df7a203a80422563c11255c0c9521327 (diff) | |
download | guix-4823adb26b5022193df83315df6734cfb5d491d1.tar.gz guix-4823adb26b5022193df83315df6734cfb5d491d1.zip |
gnu: at-spi2-core: Add missing "bash-minimal" input.
* gnu/packages/gtk.scm
(at-spi2-core)[inputs]: Add "bash-minimal" when cross-compiling.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gtk.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 6e5a71c638..6da70d47dc 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -781,6 +781,11 @@ scaled, composited, modified, saved, or rendered.") (setenv "DBUS_FATAL_WARNINGS" "0") ; (invoke "dbus-launch" "ninja" "test"))) (delete 'check)))) + (inputs + ;; TODO(core-updates): Make this input unconditional. + (if (%current-target-system) + `(("bash-minimal" ,bash-minimal)) + '())) (propagated-inputs ;; atspi-2.pc refers to all these. `(("dbus" ,dbus) |