php: Apply brute force to locate openldap

Needed after the split to multiple outputs :(. But that's what you get
for not providing pkg-config files...
This commit is contained in:
Tuomas Tynkkynen 2015-10-18 16:41:03 +03:00 committed by Vladimír Čunát
parent b4118c7f04
commit 0fe3e37946

View File

@ -42,7 +42,13 @@ let
};
ldap = {
configureFlags = ["--with-ldap=${openldap}"];
configureFlags = [
"--with-ldap"
"LDAP_DIR=${openldap.dev}"
"LDAP_INCDIR=${openldap.dev}/include"
"LDAP_LIBDIR=${openldap.out}/lib"
"--with-ldap-sasl=${cyrus_sasl.dev}"
];
buildInputs = [openldap cyrus_sasl openssl];
};