_389-ds-base: disable parallel installing
Without the change parallel installs fail occasionally as: ld: cannot find -lslapd: No such file or directory Full build log example: https://hydra.nixos.org/log/h38bj77gav0r6jbi4bgzy1lfjq22k2wy-389-ds-base-2.3.1.drv
This commit is contained in:
parent
7ed71f917d
commit
a3f338ef5f
@ -119,6 +119,10 @@ stdenv.mkDerivation rec {
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
# Disable parallel builds as those lack some dependencies:
|
||||
# ld: cannot find -lslapd: No such file or directory
|
||||
# https://hydra.nixos.org/log/h38bj77gav0r6jbi4bgzy1lfjq22k2wy-389-ds-base-2.3.1.drv
|
||||
enableParallelInstalling = false;
|
||||
|
||||
doCheck = true;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user