forked from mirrors/nixpkgs
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:
parent
b4118c7f04
commit
0fe3e37946
1 changed files with 7 additions and 1 deletions
|
@ -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];
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue