gnu: ImageMagick: Build reproducibly.

Fixes <https://bugs.gnu.org/38449>.

* gnu/packages/imagemagick.scm (imagemagick)[arguments]: In #:configure-flags,
add "--enable-reproducible-build".

(cherry picked from commit 87bc9f022c)
This commit is contained in:
Marius Bakke 2020-03-25 18:21:20 +01:00
parent 0eb56ccbd6
commit 2c5bc95a19
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -58,7 +58,11 @@ (define-public imagemagick
"0fcbcad95wn0q0pdfl0qgycm30f3a7xhskc0r5icldq6v6l4b3is"))))
(build-system gnu-build-system)
(arguments
`(#:configure-flags '("--with-frozenpaths" "--without-gcc-arch")
`(#:configure-flags '("--with-frozenpaths" "--without-gcc-arch"
;; Do not embed the build date in binaries.
"--enable-reproducible-build")
;; FIXME: The test suite succeeded before version 6.9.6-2.
;; Try enabling it again with newer releases.
#:tests? #f