summary refs log tree commit diff
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2017-10-22 21:57:59 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2017-10-22 21:57:59 +0300
commit917bd0bfbc52f548e306fd4adf8e8459cd5203ea (patch)
tree6cc6dfb75da73c016ccc68210f4391fbdbdaf4ae
parente9aa686d3b5932ef957f66c0a74e87d7ae51e50a (diff)
downloadnixlib-917bd0bfbc52f548e306fd4adf8e8459cd5203ea.tar
nixlib-917bd0bfbc52f548e306fd4adf8e8459cd5203ea.tar.gz
nixlib-917bd0bfbc52f548e306fd4adf8e8459cd5203ea.tar.bz2
nixlib-917bd0bfbc52f548e306fd4adf8e8459cd5203ea.tar.lz
nixlib-917bd0bfbc52f548e306fd4adf8e8459cd5203ea.tar.xz
nixlib-917bd0bfbc52f548e306fd4adf8e8459cd5203ea.tar.zst
nixlib-917bd0bfbc52f548e306fd4adf8e8459cd5203ea.zip
souffle: Disable parallel building
https://hydra.nixos.org/build/62750790
-rw-r--r--pkgs/development/compilers/souffle/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/compilers/souffle/default.nix b/pkgs/development/compilers/souffle/default.nix
index 217b2aecd334..c56ea8cc6495 100644
--- a/pkgs/development/compilers/souffle/default.nix
+++ b/pkgs/development/compilers/souffle/default.nix
@@ -29,7 +29,8 @@ stdenv.mkDerivation rec {
 
   preConfigure = "./bootstrap";
 
-  enableParallelBuilding = true;
+  # in 1.0.0: parser.hh:40:0: error: unterminated #ifndef
+  enableParallelBuilding = false;
 
   # See https://github.com/souffle-lang/souffle/issues/176
   hardeningDisable = [ "fortify" ];