_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:
Sergei Trofimovich 2023-03-20 09:35:01 +00:00
parent 7ed71f917d
commit a3f338ef5f

View file

@ -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;