guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: moreutils: Add more inputs to moreutils.


From: Christopher Baines
Subject: 01/01: gnu: moreutils: Add more inputs to moreutils.
Date: Sat, 12 Aug 2017 17:10:39 -0400 (EDT)

cbaines pushed a commit to branch master
in repository guix.

commit c0761f2e7e6797ac12974cddac1d9c7ba7ee28f7
Author: Christopher Baines <address@hidden>
Date:   Sat Jan 21 12:42:54 2017 +0000

    gnu: moreutils: Add more inputs to moreutils.
    
    The included ts command requires the Time::Duration and Date::Parse perl
    modules for the -r option.
    
    * gnu/packages/moreutils.scm (moreutils)[inputs]: Add perl-timedate and
      perl-time-duration.
      [arguments]: Wrap ts with PERL5LIB.
---
 gnu/packages/moreutils.scm | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/moreutils.scm b/gnu/packages/moreutils.scm
index 03ffa8f..bb6228a 100644
--- a/gnu/packages/moreutils.scm
+++ b/gnu/packages/moreutils.scm
@@ -52,10 +52,18 @@
        ("libxml2" ,libxml2)
        ("libxslt" ,libxslt)))
     (inputs
-     `(("perl" ,perl)))
+     `(("perl" ,perl)
+       ("perl-timedate" ,perl-timedate)
+       ("perl-time-duration" ,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"))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]