* Another sync with the trunk.

svn path=/nixpkgs/branches/stdenv-updates/; revision=15269
This commit is contained in:
Eelco Dolstra
2009-04-23 11:59:43 +00:00
151 changed files with 4866 additions and 3182 deletions
@@ -2,7 +2,7 @@
assert pythonSupport -> python != null;
stdenv.mkDerivation {
stdenv.mkDerivation ({
name = "libxml2-2.7.3";
src = fetchurl {
@@ -31,4 +31,8 @@ stdenv.mkDerivation {
homepage = http://xmlsoft.org/;
description = "A XML parsing library for C";
};
}
} // (if pythonSupport then {
preConfigure = ''
sed -e "s^pythondir=.*$^pythondir=$(toPythonPath $out)^" < configure.old > configure
'';
} else {}))