about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2020-01-29 10:58:58 -0500
committerGraham Christensen <graham@grahamc.com>2020-01-29 11:59:03 -0500
commit6fea9e5902809220e12b50665072d70d8d507456 (patch)
tree249b45a4c0147f78137d3b76a6919fd159f3435b
parented45fe1ccf80b556fb42213d2bff8d3935702eb4 (diff)
guile: disable parallel building for reproducibility
-rw-r--r--pkgs/development/interpreters/guile/default.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/development/interpreters/guile/default.nix b/pkgs/development/interpreters/guile/default.nix
index fce94ecc846f4..fac3d6b6fe6d8 100644
--- a/pkgs/development/interpreters/guile/default.nix
+++ b/pkgs/development/interpreters/guile/default.nix
@@ -38,7 +38,13 @@
     libtool libunistring
   ];
 
-  enableParallelBuilding = true;
+  # According to Bernhard M. Wiedemann <bwiedemann suse de> on
+  # #reproducible-builds on irc.oftc.net, (2020-01-29): they had to
+  # build Guile without parallel builds to make it reproducible.
+  #
+  # re: https://issues.guix.gnu.org/issue/20272
+  # re: https://build.opensuse.org/request/show/732638
+  enableParallelBuilding = false;
 
   patches = [
     ./eai_system.patch
@@ -109,4 +115,3 @@
     '';
   };
 })
-