mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: tuxpaint: Add bash-minimal to inputs.
* gnu/packages/games.scm (tuxpaint) [inputs]: Drop labels; add bash-minimal. Change-Id: If346f144a1d80c897be453e269ded7fb3e9f089f
This commit is contained in:
parent
5c175312f5
commit
60b9b465fa
1 changed files with 10 additions and 10 deletions
|
@ -5991,14 +5991,15 @@ (define-public tuxpaint
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list gperf pkg-config))
|
(list gperf pkg-config))
|
||||||
(inputs
|
(inputs
|
||||||
`(("cairo" ,cairo)
|
(list bash-minimal
|
||||||
("fribidi" ,fribidi)
|
cairo
|
||||||
("gettext" ,gettext-minimal)
|
fribidi
|
||||||
("libpng" ,libpng)
|
gettext-minimal
|
||||||
("librsvg" ,(librsvg-for-system))
|
libpng
|
||||||
("libpaper" ,libpaper)
|
(librsvg-for-system)
|
||||||
("netpbm" ,netpbm)
|
libpaper
|
||||||
("sdl" ,(sdl-union (list sdl sdl-mixer sdl-ttf sdl-image)))))
|
netpbm
|
||||||
|
(sdl-union (list sdl sdl-mixer sdl-ttf sdl-image))))
|
||||||
;; TODO: Use system fonts rather than those in data/fonts
|
;; TODO: Use system fonts rather than those in data/fonts
|
||||||
(arguments
|
(arguments
|
||||||
`(#:make-flags `("VER_DATE=2018-09-02"
|
`(#:make-flags `("VER_DATE=2018-09-02"
|
||||||
|
@ -6015,8 +6016,7 @@ (define-public tuxpaint
|
||||||
(add-before 'install 'no-sys-cache
|
(add-before 'install 'no-sys-cache
|
||||||
(lambda _ ;do not rebuild system conf cache
|
(lambda _ ;do not rebuild system conf cache
|
||||||
(substitute* "Makefile"
|
(substitute* "Makefile"
|
||||||
(("kbuildsycoca4") ""))
|
(("kbuildsycoca4") ""))))
|
||||||
#t))
|
|
||||||
(add-after 'install 'fix-import
|
(add-after 'install 'fix-import
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
|
|
Loading…
Reference in a new issue