gnu: gifsicle: Update to 1.94.

* gnu/packages/image.scm (gifsicle): Update to 1.94.
[arguments]: Don't explicitly return #t from phases.
This commit is contained in:
Tobias Geerinckx-Rice 2023-07-16 02:00:02 +02:00
parent 4c20d7a661
commit 5593d1c39e
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -2046,14 +2046,14 @@ (define-public swappy
(define-public gifsicle (define-public gifsicle
(package (package
(name "gifsicle") (name "gifsicle")
(version "1.93") (version "1.94")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (string-append "https://www.lcdf.org/gifsicle/gifsicle-" (uri (string-append "https://www.lcdf.org/gifsicle/gifsicle-"
version ".tar.gz")) version ".tar.gz"))
(sha256 (sha256
(base32 "0irljjm76anicsm5rfkpqxd6x105aa8f0sky13dc3x1bfdwp1xlj")))) (base32 "16zq5wd6fyjgy0p0mak15k3mh1zpqb9rg6gqfpg215kqq02p1jab"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
'(#:phases '(#:phases
@ -2066,8 +2066,7 @@ (define-public gifsicle
(("/bin/sh") (("/bin/sh")
(which "sh")) (which "sh"))
(("/bin/rm") (("/bin/rm")
(which "rm"))) (which "rm"))))))))
#t)))))
(native-inputs (list perl)) ; only for tests (native-inputs (list perl)) ; only for tests
(inputs (list libx11)) (inputs (list libx11))
(home-page "https://www.lcdf.org/gifsicle/") (home-page "https://www.lcdf.org/gifsicle/")