summary refs log blame commit diff
path: root/pkgs/os-specific/linux/pam_ldap/default.nix
blob: cb37e4a18158b6ddbac2f1420d187e7feb129c3c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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];
}