diff --git a/gnu/packages/moreutils.scm b/gnu/packages/moreutils.scm index f41dd3180c..aaa787c1d9 100644 --- a/gnu/packages/moreutils.scm +++ b/gnu/packages/moreutils.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer ;;; Copyright © 2016, 2017, 2019 Efraim Flashner -;;; Copyright © 2016–2018, 2020, 2021 Tobias Geerinckx-Rice +;;; Copyright © 2016–2018, 2020–2022 Tobias Geerinckx-Rice ;;; ;;; This file is part of GNU Guix. ;;; @@ -19,6 +19,7 @@ ;;; along with GNU Guix. If not, see . (define-module (gnu packages moreutils) + #:use-module (guix gexp) #:use-module ((guix licenses) #:prefix l:) #:use-module (guix packages) #:use-module (guix download) @@ -47,22 +48,22 @@ (inputs (list perl perl-timedate perl-time-duration)) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'install 'wrap-program - (lambda* (#:key outputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out"))) - (wrap-program - (string-append out "/bin/ts") - `("PERL5LIB" ":" prefix (,(getenv "PERL5LIB"))))))) - (delete 'configure)) ; no configure script - #:make-flags - (list (string-append "PREFIX=" (assoc-ref %outputs "out")) - (string-append "DOCBOOKXSL=" - (assoc-ref %build-inputs "docbook-xsl") "/xml/xsl/" - ,(package-name docbook-xsl) "-" - ,(package-version docbook-xsl)) - (string-append "CC=" ,(cc-for-target))))) + (list #:phases + #~(modify-phases %standard-phases + (add-after 'install 'wrap-program + (lambda _ + (wrap-program + (string-append #$output "/bin/ts") + `("PERL5LIB" ":" prefix (,(getenv "PERL5LIB")))))) + (delete 'configure)) ; no configure script + #:make-flags + #~(list (string-append "PREFIX=" #$output) + (string-append "DOCBOOKXSL=" + #$(this-package-native-input "docbook-xsl") + "/xml/xsl/docbook-xsl-" + #$(package-version (this-package-native-input + "docbook-xsl"))) + (string-append "CC=" #$(cc-for-target))))) (home-page "https://joeyh.name/code/moreutils/") (synopsis "Miscellaneous general-purpose command-line tools") (description