gnu: groff: Make build reproducible.
* gnu/packages/groff.scm (groff)[arguments]: Add phase "setenv".
This commit is contained in:
parent
bed1969524
commit
e9e6d40b22
|
@ -56,7 +56,14 @@
|
||||||
("perl" ,perl)
|
("perl" ,perl)
|
||||||
("psutils" ,psutils)
|
("psutils" ,psutils)
|
||||||
("texinfo" ,texinfo)))
|
("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")
|
(synopsis "Typesetting from plain text mixed with formatting commands")
|
||||||
(description
|
(description
|
||||||
"Groff is a typesetting package that reads plain text and produces
|
"Groff is a typesetting package that reads plain text and produces
|
||||||
|
|
Loading…
Reference in New Issue