summary refs log blame commit diff
path: root/pkgs/os-specific/linux/nss_ldap/default.nix
blob: 34de51081648decc29bb8986b9a5485b918de3ac (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                             
                        

                  

                                                                    

    
                 
                                                                                                                          


                                                                    
                      
     


                           
{stdenv, fetchurl, openldap}:
   
stdenv.mkDerivation {
  name = "nss_ldap-260";
   
  src = fetchurl {
    url = http://www.padl.com/download/nss_ldap-260.tar.gz;
    sha256 = "0kn022js39mqmy7g5ba911q46223vk7vcf51x28rbl86lp32zv4v";
  };

  preInstall = ''
    installFlagsArray=(INST_UID=$(id -u) INST_GID=$(id -g) LIBC_VERS=2.5 NSS_VERS=2 NSS_LDAP_PATH_CONF=$out/etc/ldap.conf)
    substituteInPlace Makefile \
      --replace '/usr$(libdir)' $TMPDIR \
      --replace 'install-data-local:' 'install-data-local-disabled:'
    ensureDir $out/etc
  '';

  buildInputs = [openldap];
}