mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-16 01:58:06 +00:00
jade: explicitly disable parallel builds
Without the change enabling parallel builds fails as: ld: cannot find -lsp ld: cannot find -lspgrove
This commit is contained in:
parent
b108c20023
commit
26e28f30a2
@ -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
|
||||
'';
|
||||
|
Loading…
Reference in New Issue
Block a user