me
/
guix
Archived
1
0
Fork 0

gnu: moreutils: Update to 0.66.

* gnu/packages/moreutils.scm (moreutils): Update to 0.66.
[arguments]: Don't explicitly return #t from phases.
master
Tobias Geerinckx-Rice 2021-11-03 02:46:38 +01:00
parent 914bcc6f98
commit f10ccdd91a
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 3 additions and 4 deletions

View File

@ -30,7 +30,7 @@
(define-public moreutils
(package
(name "moreutils")
(version "0.65")
(version "0.66")
(source
(origin
(method url-fetch)
@ -38,7 +38,7 @@
"https://git.joeyh.name/index.cgi/moreutils.git/snapshot/"
name "-" version ".tar.gz"))
(sha256
(base32 "10c8b4bwnli4gxwvgmgkc5kin1ksrxsnxmigs7y4rrh4aaszdjb0"))))
(base32 "0k91dvqy3jb070bkmhkdxhi05fr7hqlwpv1nrx329wmgi80rw1yw"))))
(build-system gnu-build-system)
;; For building the manual pages.
(native-inputs
@ -58,8 +58,7 @@
(let* ((out (assoc-ref outputs "out")))
(wrap-program
(string-append out "/bin/ts")
`("PERL5LIB" ":" prefix (,(getenv "PERL5LIB")))))
#t))
`("PERL5LIB" ":" prefix (,(getenv "PERL5LIB")))))))
(delete 'configure)) ; no configure script
#:make-flags
(list (string-append "PREFIX=" (assoc-ref %outputs "out"))