diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-10-20 00:44:56 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:42:28 +0200 |
commit | acaffd6fe16dad697962c9fb4bbdc7450b2653d3 (patch) | |
tree | b735671345f887e3830ea1e9e83596d4fba004c5 /gnu | |
parent | 6f4681a512e128def749f75c736f73ea71a46106 (diff) | |
download | guix-acaffd6fe16dad697962c9fb4bbdc7450b2653d3.tar guix-acaffd6fe16dad697962c9fb4bbdc7450b2653d3.tar.gz |
gnu: gamine: Add bash-minimal to inputs.
* gnu/packages/games.scm (gamine)
[inputs]: Add bash-minimal.
[arguments]: Delete trailing #t.
Change-Id: Ic779bae5f83ec13951fd3a25ff5bef86b28aee11
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/games.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 8e35df0278..de30356125 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -4726,7 +4726,8 @@ Battle for Wesnoth}."))) (native-inputs (list pkg-config intltool)) (inputs - (list gstreamer + (list bash-minimal + gstreamer gst-plugins-base ; playbin plugin gst-plugins-good ; for wav playback gtk+)) @@ -4745,8 +4746,7 @@ Battle for Wesnoth}."))) (let ((out (assoc-ref outputs "out")) (gst-plugin-path (getenv "GST_PLUGIN_SYSTEM_PATH"))) (wrap-program (string-append out "/bin/gamine") - `("GST_PLUGIN_SYSTEM_PATH" ":" prefix (,gst-plugin-path)))) - #t))))) + `("GST_PLUGIN_SYSTEM_PATH" ":" prefix (,gst-plugin-path))))))))) (home-page "http://gamine-game.sourceforge.net/") (synopsis "Mouse and keyboard discovery for children") (description |