* Purity: nss_ldap build failed when /etc/ldap.conf did not exist.

svn path=/nixpkgs/trunk/; revision=11271
This commit is contained in:
Eelco Dolstra 2008-03-24 16:00:22 +00:00
parent 438f35dac0
commit 71d50c6b25

View File

@ -1,15 +1,15 @@
{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 NSS_LDAP_PATH_CONF=$out/etc/ldap.conf)
substituteInPlace Makefile --replace '/usr$(libdir)' $TMPDIR substituteInPlace Makefile --replace '/usr$(libdir)' $TMPDIR
ensureDir $out/etc ensureDir $out/etc
"; ";