diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-10-20 00:52:27 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:42:29 +0200 |
commit | 593fcbbefabd5f8c20b026fba604b80b956ac5b2 (patch) | |
tree | 23a1274e477f690faa44a3411ee6b16a60014194 /gnu/packages | |
parent | b17cdf3c90456a72f0d04425e60a57d896d7f8f9 (diff) | |
download | guix-593fcbbefabd5f8c20b026fba604b80b956ac5b2.tar guix-593fcbbefabd5f8c20b026fba604b80b956ac5b2.tar.gz |
gnu: neverball: Add bash-minimal to inputs.
* gnu/packages/games.scm (neverball)
[inputs]: Add bash-minimal.
[arguments]: Deletions trailing #t.
Change-Id: I8e7a2cfea7cf17ff5319c08230e0fc7f4ab8fbeb
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/games.scm | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 2c864c9287..82a468dfa1 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -72,7 +72,7 @@ ;;; Copyright © 2022 Roman Riabenko <roman@riabenko.com> ;;; Copyright © 2022, 2023 zamfofex <zamfofex@twdb.moe> ;;; Copyright © 2022 Gabriel Arazas <foo.dogsquared@gmail.com> -;;; Copyright © 2022, 2024 Maxim Cournoyer <maxim.cournoyer@gmail.com> +;;; Copyright © 2022-2024 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2022 Hendursaga <hendursaga@aol.com> ;;; Copyright © 2022 Parnikkapore <poomklao@yahoo.com> ;;; Copyright © 2023 Zheng Junjie <873216071@qq.com> @@ -10884,8 +10884,7 @@ kingdom.") (snippet '(begin ;; Octocat seems to be non-free. Oddly, Debian doesn't strip it. - (delete-file-recursively "data/ball/octocat") - #t)))) + (delete-file-recursively "data/ball/octocat"))))) (build-system copy-build-system) (arguments `(#:install-plan @@ -10950,20 +10949,19 @@ kingdom.") (string-append "LOCALEDIR=" out "/share/locale") (string-append "SDL_CPPFLAGS=-I" sdl - "/include/SDL2/"))) - #t)) + "/include/SDL2/"))))) (add-after 'install 'fix-some-broken-fonts (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out"))) (wrap-program (string-append out "/bin/neverball") `("LANG" = ("en_US.utf8"))) (wrap-program (string-append out "/bin/neverputt") - `("LANG" = ("en_US.utf8")))) - #t))))) + `("LANG" = ("en_US.utf8"))))))))) (native-inputs `(("gettext" ,gettext-minimal))) ;for msgfmt (inputs - `(("libjpeg" ,libjpeg-turbo) + `(("bash-minimal" ,bash-minimal) + ("libjpeg" ,libjpeg-turbo) ("libpng" ,libpng) ("libvorbis" ,libvorbis) ("physfs" ,physfs) |