guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: roffit: Wrap binary.


From: guix-commits
Subject: 01/02: gnu: roffit: Wrap binary.
Date: Tue, 15 Sep 2020 02:46:16 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 8aea855ac1fe05fc462206adb607d639a06b50a5
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Sep 15 09:37:18 2020 +0300

    gnu: roffit: Wrap binary.
    
    Fixes <https://debbugs.gnu.org/43306>.
    
    * gnu/packages/groff.scm (roffit)[arguments]: Add 'wrap-binary phase to
    help find perl libraries.
---
 gnu/packages/groff.scm | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/groff.scm b/gnu/packages/groff.scm
index 3a44497..0daf614 100644
--- a/gnu/packages/groff.scm
+++ b/gnu/packages/groff.scm
@@ -3,7 +3,7 @@
 ;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
 ;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net>
 ;;; Copyright © 2017 Ludovic Courtès <ludo@gnu.org>
-;;; Copyright © 2019 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2019 Eric Bavier <bavier@member.fsf.org>
 ;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
 ;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
@@ -201,7 +201,13 @@ is usually the formatter of \"man\" documentation pages.")
              (lambda* (#:key outputs #:allow-other-keys)
                (mkdir-p (string-append (assoc-ref outputs "out")
                                        "/bin"))
-               #t)))))
+               #t))
+           (add-after 'install 'wrap-program
+             (lambda* (#:key outputs #:allow-other-keys)
+               (let ((out (assoc-ref outputs "out")))
+                 (wrap-program (string-append out "/bin/roffit")
+                   `("PERL5LIB" ":" prefix (,(getenv "PERL5LIB"))))
+                 #t))))))
       (native-inputs `(("html-tree" ,perl-html-tree))) ; for test
       (inputs
        `(("perl" ,perl)))



reply via email to

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