From 1920d2a3e337ded88a27569e30407f0740592ac2 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 12 Feb 2022 21:36:34 +0100 Subject: [PATCH] openscad: retry parallel building Was disabled 3y ago due to their build system not handling high parallelism correctly. Verified with multiple high core builders (8, 24, 64 Threads) and did not encounter the problem mentioned in the comment. Was motivated by watching my remote builder taking over 15 minutes for this one package, which was a bit annoying. --- pkgs/applications/graphics/openscad/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/openscad/default.nix b/pkgs/applications/graphics/openscad/default.nix index be079b6bdb20..413e16718216 100644 --- a/pkgs/applications/graphics/openscad/default.nix +++ b/pkgs/applications/graphics/openscad/default.nix @@ -57,8 +57,7 @@ mkDerivation rec { "SPNAV_LIBPATH=${libspnav}/lib" ]; - # src/lexer.l:36:10: fatal error: parser.hxx: No such file or directory - enableParallelBuilding = false; # true by default due to qmake + enableParallelBuilding = true; postInstall = lib.optionalString stdenv.isDarwin '' mkdir $out/Applications