openldap: fix build on darwin
This commit is contained in:
parent
d43f1c86bd
commit
a20b4cbbba
@ -18,9 +18,10 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
dontPatchELF = 1; # !!!
|
dontPatchELF = 1; # !!!
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = "http://www.openldap.org/";
|
homepage = http://www.openldap.org/;
|
||||||
description = "An open source implementation of the Lightweight Directory Access Protocol";
|
description = "An open source implementation of the Lightweight Directory Access Protocol";
|
||||||
maintainers = stdenv.lib.maintainers.mornfall;
|
maintainers = with maintainers; [ lovek323 mornfall ];
|
||||||
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -5899,7 +5899,11 @@ let
|
|||||||
|
|
||||||
openexr = callPackage ../development/libraries/openexr { };
|
openexr = callPackage ../development/libraries/openexr { };
|
||||||
|
|
||||||
openldap = callPackage ../development/libraries/openldap { };
|
openldap = callPackage ../development/libraries/openldap {
|
||||||
|
stdenv = if stdenv.isDarwin
|
||||||
|
then clangStdenv
|
||||||
|
else stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
openlierox = callPackage ../games/openlierox { };
|
openlierox = callPackage ../games/openlierox { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user