gnu: deutex: Update to 5.2.2.
* gnu/packages/game-development.scm (deutex): Update to 5.2.2. [source]: Change tarball extension. [native-inputs]: Add zstd.
This commit is contained in:
parent
74d811297d
commit
d6660ef6ee
1 changed files with 12 additions and 11 deletions
|
@ -8,7 +8,7 @@
|
||||||
;;; Copyright © 2016, 2017, 2020 Kei Kebreau <kkebreau@posteo.net>
|
;;; Copyright © 2016, 2017, 2020 Kei Kebreau <kkebreau@posteo.net>
|
||||||
;;; Copyright © 2016, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2016, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2016, 2017, 2018 Julian Graham <joolean@gmail.com>
|
;;; Copyright © 2016, 2017, 2018 Julian Graham <joolean@gmail.com>
|
||||||
;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2017–2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2017 Manolis Fragkiskos Ragkousis <manolis837@gmail.com>
|
;;; Copyright © 2017 Manolis Fragkiskos Ragkousis <manolis837@gmail.com>
|
||||||
;;; Copyright © 2017 Peter Mikkelsen <petermikkelsen10@gmail.com>
|
;;; Copyright © 2017 Peter Mikkelsen <petermikkelsen10@gmail.com>
|
||||||
;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
|
;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
|
||||||
|
@ -163,21 +163,22 @@ is used in some video games and movies.")
|
||||||
(define-public deutex
|
(define-public deutex
|
||||||
(package
|
(package
|
||||||
(name "deutex")
|
(name "deutex")
|
||||||
(version "5.2.1")
|
(version "5.2.2")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append "https://github.com/Doom-Utils/deutex"
|
(method url-fetch)
|
||||||
"/releases/download/v" version "/"
|
(uri (string-append "https://github.com/Doom-Utils/deutex"
|
||||||
"deutex-" version ".tar.xz"))
|
"/releases/download/v" version "/"
|
||||||
(sha256
|
"deutex-" version ".tar.zst"))
|
||||||
(base32
|
(sha256
|
||||||
"07w3asqxx89wl2wfv1z3cak8v83h3ys3b39mq9qq4gyf3xdhs76n"))))
|
(base32 "0psb2za6ldrlak7s8pjvli98ij5yiwjx8j1ms2v7rj9yadx0xv8h"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("libpng" ,libpng)))
|
`(("libpng" ,libpng)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("asciidoc" ,asciidoc)
|
`(("asciidoc" ,asciidoc)
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)
|
||||||
|
("zstd" ,zstd)))
|
||||||
(home-page "https://github.com/Doom-Utils/deutex")
|
(home-page "https://github.com/Doom-Utils/deutex")
|
||||||
(synopsis "WAD file composer for Doom and related games")
|
(synopsis "WAD file composer for Doom and related games")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue