openldap: fix build on darwin

This commit is contained in:
Jason "Don" O'Conal 2014-09-01 13:55:46 +10:00
parent d43f1c86bd
commit a20b4cbbba
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

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