mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-16 19:57:39 -05:00
gnu: retux: Update to 1.5.
* gnu/packages/games.scm (retux): Update to 1.5. [source]: Download zip archive since a stable tar archive is unavailable. [native-inputs]: Add unzip.
This commit is contained in:
parent
ff9c881ffe
commit
a77340e1cd
1 changed files with 6 additions and 4 deletions
|
@ -2086,8 +2086,8 @@ (define-public prboom-plus
|
|||
(license license:gpl2+)))
|
||||
|
||||
(define-public retux
|
||||
(let ((release "1.4.1")
|
||||
(revision 1))
|
||||
(let ((release "1.5")
|
||||
(revision 0))
|
||||
(package
|
||||
(name "retux")
|
||||
(version (if (zero? revision)
|
||||
|
@ -2099,10 +2099,10 @@ (define-public retux
|
|||
(uri (string-append "https://github.com/retux-game/retux/"
|
||||
"releases/download/v"
|
||||
version "/retux-"
|
||||
release "-src.tar.gz"))
|
||||
release "-src.zip"))
|
||||
(sha256
|
||||
(base32
|
||||
"1vrldg2qh2gqfswj7vkpc589ldrrjd903j6cnfdik9zh0jhlq4h2"))))
|
||||
"1yima7s36hn2kh5h08lczc5iid8jbdxk7x1g5ms6knaznzj7rll3"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; no check target
|
||||
|
@ -2125,6 +2125,8 @@ (define-public retux
|
|||
(copy-file "retux.py" (string-append bin "/retux"))
|
||||
(copy-recursively "data" data)
|
||||
#t))))))
|
||||
(native-inputs
|
||||
`(("unzip" ,unzip)))
|
||||
(inputs
|
||||
`(("python-sge-pygame" ,python-sge-pygame)
|
||||
("python-six" ,python-six)
|
||||
|
|
Loading…
Reference in a new issue