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.
This commit is contained in:
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

View file

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