Skip to content

Commit a3f338e

Browse files
committed
_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
1 parent 7ed71f9 commit a3f338e

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

pkgs/servers/ldap/389/default.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,10 @@ stdenv.mkDerivation rec {
119119
];
120120

121121
enableParallelBuilding = true;
122+
# Disable parallel builds as those lack some dependencies:
123+
# ld: cannot find -lslapd: No such file or directory
124+
# https://hydra.nixos.org/log/h38bj77gav0r6jbi4bgzy1lfjq22k2wy-389-ds-base-2.3.1.drv
125+
enableParallelInstalling = false;
122126

123127
doCheck = true;
124128

0 commit comments

Comments
 (0)