Merge pull request #151927 from trofi/sequential-jade

jade: explicitly disable parallel builds
This commit is contained in:
Bobby Rong
2021-12-24 10:44:16 +08:00
committed by GitHub
+5
View File
@@ -21,6 +21,11 @@ stdenv.mkDerivation rec {
NIX_CFLAGS_COMPILE = "-Wno-deprecated";
# Makefile is missing intra-library depends, fails build as:
# ld: cannot find -lsp
# ld: cannot find -lspgrove
enableParallelBuilding = false;
preInstall = ''
install -d -m755 "$out"/lib
'';