* Added openldap and pam_ldap.

svn path=/nixpkgs/trunk/; revision=7641
This commit is contained in:
Eelco Dolstra
2007-01-11 21:55:29 +00:00
parent 4cb58da8e6
commit f866d0c0bd
3 changed files with 36 additions and 0 deletions
@@ -0,0 +1,12 @@
{stdenv, fetchurl, openssl}:
stdenv.mkDerivation {
name = "openldap-2.3.32";
src = fetchurl {
url = ftp://ftp.nl.uu.net/pub/unix/db/openldap/openldap-release/openldap-2.3.32.tgz;
md5 = "154d674cf95a8f8acc496cc6cb0671e1";
};
buildInputs = [openssl];
configureFlags = "--disable-slapd --disable-static";
dontPatchELF = 1; # !!!
}