From 366689a448a6c4120be327e7b595dc4616e8e25d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Sat, 1 Dec 2012 15:18:12 +0100 Subject: [PATCH] gnutls: disable parallel builds --- pkgs/development/libraries/gnutls/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/gnutls/default.nix b/pkgs/development/libraries/gnutls/default.nix index ee566d46b65..3e5ba3079f0 100644 --- a/pkgs/development/libraries/gnutls/default.nix +++ b/pkgs/development/libraries/gnutls/default.nix @@ -26,7 +26,10 @@ stdenv.mkDerivation (rec { else ""} ''; - enableParallelBuilding = true; + # Build of the Guile bindings is not parallel-safe. See + # + # for the actual fix. + enableParallelBuilding = false; buildInputs = [ zlib lzo ] ++ stdenv.lib.optional guileBindings guile;