diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-10-20 00:48:26 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:42:28 +0200 |
commit | 60b9b465faea0500cec178873d851281d53beabc (patch) | |
tree | ded3879d9b01e2485fae4a24f3f51d84c77b6590 /gnu/packages/games.scm | |
parent | 5c175312f5d8d7a2fefbe2944a8698835f32facb (diff) | |
download | guix-60b9b465faea0500cec178873d851281d53beabc.tar guix-60b9b465faea0500cec178873d851281d53beabc.tar.gz |
gnu: tuxpaint: Add bash-minimal to inputs.
* gnu/packages/games.scm (tuxpaint)
[inputs]: Drop labels; add bash-minimal.
Change-Id: If346f144a1d80c897be453e269ded7fb3e9f089f
Diffstat (limited to 'gnu/packages/games.scm')
-rw-r--r-- | gnu/packages/games.scm | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index e53b429b73..cd1dc2d315 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -5991,14 +5991,15 @@ safety of the Chromium vessel.") (native-inputs (list gperf pkg-config)) (inputs - `(("cairo" ,cairo) - ("fribidi" ,fribidi) - ("gettext" ,gettext-minimal) - ("libpng" ,libpng) - ("librsvg" ,(librsvg-for-system)) - ("libpaper" ,libpaper) - ("netpbm" ,netpbm) - ("sdl" ,(sdl-union (list sdl sdl-mixer sdl-ttf sdl-image))))) + (list bash-minimal + cairo + fribidi + gettext-minimal + libpng + (librsvg-for-system) + libpaper + netpbm + (sdl-union (list sdl sdl-mixer sdl-ttf sdl-image)))) ;; TODO: Use system fonts rather than those in data/fonts (arguments `(#:make-flags `("VER_DATE=2018-09-02" @@ -6015,8 +6016,7 @@ safety of the Chromium vessel.") (add-before 'install 'no-sys-cache (lambda _ ;do not rebuild system conf cache (substitute* "Makefile" - (("kbuildsycoca4") "")) - #t)) + (("kbuildsycoca4") "")))) (add-after 'install 'fix-import (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) |