jade: explicitly disable parallel builds

Without the change enabling parallel builds fails as:

    ld: cannot find -lsp
    ld: cannot find -lspgrove
main
Sergei Trofimovich 3 years ago
parent b108c20023
commit 26e28f30a2
  1. 5
      pkgs/tools/text/sgml/jade/default.nix

@ -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…
Cancel
Save