gnu: fizmo: Update to 0.8.5.
* gnu/packages/games.scm (fizmo): Update to 0.8.5. [arguments]: Adjust #:configure-flags to improved library detection.
This commit is contained in:
parent
59e8a57d08
commit
50e1d36c48
|
@ -1616,23 +1616,20 @@ reference interpreter, using the Glk API.")
|
||||||
(define-public fizmo
|
(define-public fizmo
|
||||||
(package
|
(package
|
||||||
(name "fizmo")
|
(name "fizmo")
|
||||||
(version "0.8.4")
|
(version "0.8.5")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://christoph-ender.de/fizmo/source/"
|
(uri (string-append "https://christoph-ender.de/fizmo/source/"
|
||||||
name "-" version ".tar.gz"))
|
name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1sd988db2302r7cbfcfghbmg8ck43c6hvnlnlpb0rqxb7pm9cwyy"))))
|
"1amyc4n41jf08kxmdgkk30bzzx54miaxa97w28f417qwn8lrl98w"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:configure-flags
|
'(#:configure-flags
|
||||||
(let ((libjpeg (assoc-ref %build-inputs "libjpeg"))
|
(let ((libjpeg (assoc-ref %build-inputs "libjpeg"))
|
||||||
(ncurses (assoc-ref %build-inputs "ncurses")))
|
(ncurses (assoc-ref %build-inputs "ncurses")))
|
||||||
(list (string-append "jpeg_CFLAGS=-I" libjpeg "/include")
|
(list (string-append "--with-jpeg-includedir=" libjpeg "/include")))))
|
||||||
(string-append "jpeg_LIBS=-ljpeg")
|
|
||||||
(string-append "ncursesw_CFLAGS=-I" ncurses "/include")
|
|
||||||
(string-append "ncursesw_LIBS=-lncursesw")))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("pkg-config" ,pkg-config)))
|
||||||
(inputs
|
(inputs
|
||||||
|
|
Loading…
Reference in New Issue