[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/08: gnu: neverball: Add bash-minimal to inputs.
From: |
guix-commits |
Subject: |
08/08: gnu: neverball: Add bash-minimal to inputs. |
Date: |
Fri, 20 Oct 2023 00:54:04 -0400 (EDT) |
apteryx pushed a commit to branch core-updates
in repository guix.
commit 8662e177bda8281dc742d656183d90149b06f37f
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Fri Oct 20 00:52:27 2023 -0400
gnu: neverball: Add bash-minimal to inputs.
* gnu/packages/games.scm (neverball)
[inputs]: Add bash-minimal.
[arguments]: Deletions trailing #t.
Change-Id: I8e7a2cfea7cf17ff5319c08230e0fc7f4ab8fbeb
---
gnu/packages/games.scm | 14 ++++++--------
1 file changed, 6 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index fdaf1cc1ba..97131610f1 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 Maxim Cournoyer <maxim.cournoyer@gmail.com>
+;;; Copyright © 2022, 2023 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>
@@ -10462,8 +10462,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
@@ -10528,20 +10527,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)
- branch core-updates updated (a6a39b30fc -> 8662e177bd), guix-commits, 2023/10/20
- 01/08: gnu: gamine: Add bash-minimal to inputs., guix-commits, 2023/10/20
- 05/08: gnu: lady: Add bash-minimal to inputs., guix-commits, 2023/10/20
- 08/08: gnu: neverball: Add bash-minimal to inputs.,
guix-commits <=
- 03/08: gnu: red-eclipse: Add bash-minimal to inputs., guix-commits, 2023/10/20
- 02/08: gnu: corsix-th: Add bash-minimal to inputs., guix-commits, 2023/10/20
- 04/08: gnu: tuxpaint: Add bash-minimal to inputs., guix-commits, 2023/10/20
- 06/08: gnu: xonotic: Add bash-minimal to inputs., guix-commits, 2023/10/20
- 07/08: gnu: frozen-bubble: Add bash-minimal to inputs., guix-commits, 2023/10/20