* 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,16 @@
{stdenv, fetchurl, pam, openldap}:
stdenv.mkDerivation {
name = "pam_ldap-183";
src = fetchurl {
url = http://www.padl.com/download/pam_ldap-183.tar.gz;
md5 = "c0ad81e9d9712ddc6599a6e7a1688778";
};
preInstall = "
substituteInPlace Makefile --replace '-o root -g root' ''
";
buildInputs = [pam openldap];
}