mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: neverball: Add bash-minimal to inputs.
* gnu/packages/games.scm (neverball) [inputs]: Add bash-minimal. [arguments]: Deletions trailing #t. Change-Id: I8e7a2cfea7cf17ff5319c08230e0fc7f4ab8fbeb
This commit is contained in:
parent
b17cdf3c90
commit
593fcbbefa
1 changed files with 6 additions and 8 deletions
|
@ -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 @@ (define-public neverball
|
|||
(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 @@ (define-public neverball
|
|||
(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)
|
||||
|
|
Loading…
Reference in a new issue