Merge pull request #3917 from lovek323/openldap

openldap: fix build on darwin
This commit is contained in:
Michael Raskin 2014-09-02 00:52:16 +04:00
commit ace2e42638
2 changed files with 9 additions and 4 deletions

View file

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

View file

@ -5920,7 +5920,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 { };