about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2021-11-19 01:03:22 -0800
committerJonathan Ringer <jonringer117@gmail.com>2021-11-19 01:03:49 -0800
commit49a2392306e6e4f4f13dd6f8887e20c252e82df9 (patch)
tree939f16ffe0a33a40c99fdcbbd30c22f2941c9d61
parent3b12b5b822ee04626d0fd40b8b051da082356da8 (diff)
gengetopt: disable parallelism
Test suite is not thread safe.
-rw-r--r--pkgs/development/tools/misc/gengetopt/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/tools/misc/gengetopt/default.nix b/pkgs/development/tools/misc/gengetopt/default.nix
index 2c09f925d3d8b..d24d4b66d66c9 100644
--- a/pkgs/development/tools/misc/gengetopt/default.nix
+++ b/pkgs/development/tools/misc/gengetopt/default.nix
@@ -15,7 +15,8 @@ stdenv.mkDerivation rec {
     rm tests/test_conf_parser_save.sh
   '';
 
-  enableParallelBuilding = true;
+  # test suite is not thread safe
+  enableParallelBuilding = false;
 
   nativeBuildInputs = [ texinfo help2man ];