haskellPackages.LDAP: Fix build

This commit is contained in:
Rickard Nilsson 2017-12-29 11:41:49 +01:00
parent d07bc8bb30
commit 1de251c664

View file

@ -502,4 +502,7 @@ self: super: builtins.intersectAttrs super {
partial-semigroup = dontCheck super.partial-semigroup;
colour = dontCheck super.colour;
LDAP = dontCheck (overrideCabal super.LDAP (drv: {
librarySystemDepends = drv.librarySystemDepends or [] ++ [ pkgs.cyrus_sasl.dev ];
}));
}