gnu: retux: Update to 1.6.1.
* gnu/packages/games.scm (retux): Update to 1.6.1. [arguments]: Don't explicitly return #t from phases. [inputs]: Remove python-six. I found no indication that it's used.master
parent
ce21522706
commit
62b2d37e51
|
@ -2200,7 +2200,7 @@ Every puzzle has a complete solution, although there may be more than one.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
(define-public retux
|
(define-public retux
|
||||||
(let ((release "1.5")
|
(let ((release "1.6.1")
|
||||||
(revision 0))
|
(revision 0))
|
||||||
(package
|
(package
|
||||||
(name "retux")
|
(name "retux")
|
||||||
|
@ -2216,7 +2216,7 @@ Every puzzle has a complete solution, although there may be more than one.")
|
||||||
release "-src.zip"))
|
release "-src.zip"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1yima7s36hn2kh5h08lczc5iid8jbdxk7x1g5ms6knaznzj7rll3"))))
|
"1bkyfm0h4kys0x7c1340fnkhgnmcrf4j2xjm250r5w8q6l7v2wj4"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no check target
|
`(#:tests? #f ; no check target
|
||||||
|
@ -2237,12 +2237,11 @@ Every puzzle has a complete solution, although there may be more than one.")
|
||||||
(string-append "\"" data "\",")))
|
(string-append "\"" data "\",")))
|
||||||
|
|
||||||
(copy-file "retux.py" (string-append bin "/retux"))
|
(copy-file "retux.py" (string-append bin "/retux"))
|
||||||
(copy-recursively "data" data)
|
(copy-recursively "data" data)))))))
|
||||||
#t))))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list unzip))
|
(list unzip))
|
||||||
(inputs
|
(inputs
|
||||||
(list python-sge python-six python-xsge))
|
(list python-sge python-xsge))
|
||||||
(home-page "https://retux-game.github.io/")
|
(home-page "https://retux-game.github.io/")
|
||||||
(synopsis "Action platformer game")
|
(synopsis "Action platformer game")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue