diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-01-26 23:49:57 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-01-26 23:50:25 +0100 |
commit | 181444fe3f7dd1f6c7f7d50f699774db2b2323ca (patch) | |
tree | e19f208feafd6f1758f28786bb9550e5841473ea /gnu | |
parent | 5e163ba00969e7ba05897840a1199b967252b4ae (diff) |
gnu: guile-gcrypt: Build sequentially and reproducibly.
* gnu/packages/gnupg.scm (guile-gcrypt)[arguments]: New field.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gnupg.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm index 4793618156..4db7b4ca86 100644 --- a/gnu/packages/gnupg.scm +++ b/gnu/packages/gnupg.scm @@ -433,6 +433,10 @@ gpgpme starting with version 1.7.") "0m29fg4pdfifnqqsa437zc5c1bhbfh62mc69ba25ak4x2cla41ll")) (file-name (git-file-name name version)))) (build-system gnu-build-system) + (arguments + ;; Work around <https://bugs.gnu.org/20272> to achieve reproducible + ;; builds. + '(#:parallel-build? #f)) (native-inputs `(("pkg-config" ,pkg-config) ("autoconf" ,autoconf) |