guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: groff: Make build reproducible.


From: Danny Milosavljevic
Subject: 01/01: gnu: groff: Make build reproducible.
Date: Thu, 31 Aug 2017 09:05:28 -0400 (EDT)

dannym pushed a commit to branch core-updates
in repository guix.

commit e9e6d40b2292c4a3fbc86bee6a7146eaba59c075
Author: Danny Milosavljevic <address@hidden>
Date:   Tue Aug 29 07:58:36 2017 +0200

    gnu: groff: Make build reproducible.
    
    * gnu/packages/groff.scm (groff)[arguments]: Add phase "setenv".
---
 gnu/packages/groff.scm | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/groff.scm b/gnu/packages/groff.scm
index 67dd1db..6e1a60e 100644
--- a/gnu/packages/groff.scm
+++ b/gnu/packages/groff.scm
@@ -56,7 +56,14 @@
                     ("perl" ,perl)
                     ("psutils" ,psutils)
                     ("texinfo" ,texinfo)))
-   (arguments '(#:parallel-build? #f))  ; parallel build fails
+   (arguments
+    `(#:parallel-build? #f   ; parallel build fails
+      #:phases
+      (modify-phases %standard-phases
+        (add-after 'unpack 'setenv
+          (lambda _
+            (setenv "GS_GENERATE_UUIDS" "0")
+            #t)))))
    (synopsis "Typesetting from plain text mixed with formatting commands")
    (description
     "Groff is a typesetting package that reads plain text and produces



reply via email to

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