* nss_ldap: purity fix: don't try to install /etc/ldap.conf.

svn path=/nixpkgs/branches/stdenv-updates/; revision=11850
This commit is contained in:
Eelco Dolstra 2008-05-20 09:19:17 +00:00
parent 1d6f0ab989
commit a4e77530c8

View File

@ -1,18 +1,20 @@
{stdenv, fetchurl, openldap}: {stdenv, fetchurl, openldap}:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "nss_ldap-254"; name = "nss_ldap-260";
src = fetchurl { src = fetchurl {
url = http://www.padl.com/download/nss_ldap-254.tar.gz; url = http://www.padl.com/download/nss_ldap-260.tar.gz;
md5 = "00475b790d3aff3ccd40a1ab4520965e"; sha256 = "0kn022js39mqmy7g5ba911q46223vk7vcf51x28rbl86lp32zv4v";
}; };
preInstall = " preInstall = ''
installFlagsArray=(INST_UID=$(id -u) INST_GID=$(id -g) LIBC_VERS=2.5 NSS_VERS=2) installFlagsArray=(INST_UID=$(id -u) INST_GID=$(id -g) LIBC_VERS=2.5 NSS_VERS=2)
substituteInPlace Makefile --replace '/usr$(libdir)' $TMPDIR substituteInPlace Makefile \
--replace '/usr$(libdir)' $TMPDIR \
--replace 'install-data-local:' 'install-data-local-disabled:'
ensureDir $out/etc ensureDir $out/etc
"; '';
buildInputs = [openldap]; buildInputs = [openldap];
} }