diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-11-03 14:25:30 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-11-03 14:27:51 +0200 |
commit | 075df3d3e2f86ad2548075969b34402a3c40ec42 (patch) | |
tree | 303b422a84ce5ee1fccff610eaf83b20919e8b87 /gnu/packages/moreutils.scm | |
parent | aba40a6b7fdce56fe439668b3152ae4d4ddd1551 (diff) | |
parent | b2721c3656e0ddf76dcccccfbacaaa309d2f47fe (diff) | |
download | guix-075df3d3e2f86ad2548075969b34402a3c40ec42.tar.gz |
Merge remote-tracking branch 'origin/master' into core-updates-frozen
Diffstat (limited to 'gnu/packages/moreutils.scm')
-rw-r--r-- | gnu/packages/moreutils.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/moreutils.scm b/gnu/packages/moreutils.scm index 47bda32126..8a31a0f676 100644 --- a/gnu/packages/moreutils.scm +++ b/gnu/packages/moreutils.scm @@ -23,6 +23,7 @@ #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) + #:use-module (guix utils) #:use-module (gnu packages perl) #:use-module (gnu packages xml) #:use-module (gnu packages docbook)) @@ -30,7 +31,7 @@ (define-public moreutils (package (name "moreutils") - (version "0.65") + (version "0.66") (source (origin (method url-fetch) @@ -38,7 +39,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 +59,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")) @@ -67,7 +67,7 @@ (assoc-ref %build-inputs "docbook-xsl") "/xml/xsl/" ,(package-name docbook-xsl) "-" ,(package-version docbook-xsl)) - "CC=gcc"))) + (string-append "CC=" ,(cc-for-target))))) (home-page "https://joeyh.name/code/moreutils/") (synopsis "Miscellaneous general-purpose command-line tools") (description |