summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2021-12-23 23:26:08 +0000
committerSergei Trofimovich <slyich@gmail.com>2021-12-23 23:29:53 +0000
commit26e28f30a2b1f1501604052ef291255cc4283cae (patch)
treec0e75e1b013477bee17962c5f95a97105a2fec05 /pkgs/tools/text
parentb108c20023d4f0c88d5a5ec85dfe782084ace0bd (diff)
downloadnixpkgs-26e28f30a2b1f1501604052ef291255cc4283cae.tar
nixpkgs-26e28f30a2b1f1501604052ef291255cc4283cae.tar.gz
nixpkgs-26e28f30a2b1f1501604052ef291255cc4283cae.tar.bz2
nixpkgs-26e28f30a2b1f1501604052ef291255cc4283cae.tar.lz
nixpkgs-26e28f30a2b1f1501604052ef291255cc4283cae.tar.xz
nixpkgs-26e28f30a2b1f1501604052ef291255cc4283cae.tar.zst
nixpkgs-26e28f30a2b1f1501604052ef291255cc4283cae.zip
jade: explicitly disable parallel builds
Without the change enabling parallel builds fails as:

    ld: cannot find -lsp
    ld: cannot find -lspgrove
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/sgml/jade/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/tools/text/sgml/jade/default.nix b/pkgs/tools/text/sgml/jade/default.nix
index b58b4c62947..8aeaaaa4249 100644
--- a/pkgs/tools/text/sgml/jade/default.nix
+++ b/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
   '';