about summary refs log tree commit diff
path: root/pkgs/shells/bash/5.0.nix
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-01-08 00:16:45 -0600
committerWill Dietz <w@wdtz.org>2019-01-08 00:16:45 -0600
commit844bd5374057404ecea6cfbf3b92b89507240432 (patch)
tree012a84df1dbf2392fa10b82b8ec41eb45967f015 /pkgs/shells/bash/5.0.nix
parent86a1a3950b7cf714357d6a9c99566a2ca1b5b6b4 (diff)
downloadnixlib-844bd5374057404ecea6cfbf3b92b89507240432.tar
nixlib-844bd5374057404ecea6cfbf3b92b89507240432.tar.gz
nixlib-844bd5374057404ecea6cfbf3b92b89507240432.tar.bz2
nixlib-844bd5374057404ecea6cfbf3b92b89507240432.tar.lz
nixlib-844bd5374057404ecea6cfbf3b92b89507240432.tar.xz
nixlib-844bd5374057404ecea6cfbf3b92b89507240432.tar.zst
nixlib-844bd5374057404ecea6cfbf3b92b89507240432.zip
bash5: enable parallel building optimistically
Works for me and they've had quite some time to fix it ;).
Diffstat (limited to 'pkgs/shells/bash/5.0.nix')
-rw-r--r--pkgs/shells/bash/5.0.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/shells/bash/5.0.nix b/pkgs/shells/bash/5.0.nix
index e747511be59e..e36259c24967 100644
--- a/pkgs/shells/bash/5.0.nix
+++ b/pkgs/shells/bash/5.0.nix
@@ -78,9 +78,7 @@ stdenv.mkDerivation rec {
 
   buildInputs = optional interactive readline80;
 
-  # Bash randomly fails to build because of a recursive invocation to
-  # build `version.h'.
-  enableParallelBuilding = false;
+  enableParallelBuilding = true;
 
   makeFlags = optional stdenv.hostPlatform.isCygwin [
     "LOCAL_LDFLAGS=-Wl,--export-all,--out-implib,libbash.dll.a"