mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 20:34:52 +03:00
openldap: fix build on darwin
This commit is contained in:
parent
d43f1c86bd
commit
a20b4cbbba
@ -18,9 +18,10 @@ stdenv.mkDerivation rec {
|
||||
|
||||
dontPatchELF = 1; # !!!
|
||||
|
||||
meta = {
|
||||
homepage = "http://www.openldap.org/";
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.openldap.org/;
|
||||
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 { };
|
||||
|
||||
openldap = callPackage ../development/libraries/openldap { };
|
||||
openldap = callPackage ../development/libraries/openldap {
|
||||
stdenv = if stdenv.isDarwin
|
||||
then clangStdenv
|
||||
else stdenv;
|
||||
};
|
||||
|
||||
openlierox = callPackage ../games/openlierox { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user