gnu: entr: Update to 5.4.

* gnu/packages/entr.scm (entr): Update to 5.4.
[arguments]: Don't explicitly return #t from phases.
This commit is contained in:
Tobias Geerinckx-Rice 2023-07-30 02:00:00 +02:00
parent 492d56b9e0
commit e9abc417d3
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -35,14 +35,14 @@ (define-module (gnu packages entr)
(define-public entr
(package
(name "entr")
(version "5.2")
(version "5.4")
(source (origin
(method url-fetch)
(uri (string-append "https://eradman.com/entrproject/code/entr-"
version ".tar.gz"))
(sha256
(base32
"1063b33bqggyqd0h7cvcvznpgiy9s2zqkdsc1q622xdh8sfk0zi3"))))
"17hz4aca6dsh6z58625jg8fbk5m9ng3s95pl4s6ws79zrk9dw7a9"))))
(build-system gnu-build-system)
(arguments
`(#:test-target "test"
@ -64,8 +64,7 @@ (define-public entr
(("/bin/cat" command)
(search-input-file inputs command))
(("/usr(/bin/clear)" _ command)
(search-input-file inputs command)))
#t)))))
(search-input-file inputs command))))))))
(inputs
(list bash coreutils ncurses))
(home-page "https://eradman.com/entrproject/")