* Update a bunch of base packages.

svn path=/nixpkgs/trunk/; revision=4065
This commit is contained in:
Eelco Dolstra
2005-10-11 14:29:30 +00:00
parent b5eb0b0b5f
commit 552de99c19
10 changed files with 24 additions and 24 deletions

View File

@@ -8,7 +8,7 @@ fi
patchPhase() {
echo "Patching"
mv configure configure.old
sed -e "s^pythondir=.*$^pythondir=$out/lib/python2.3/site-packages^" < configure.old > configure
sed -e "s^pythondir=.*$^pythondir=$out/lib/python2.4/site-packages^" < configure.old > configure
chmod u+x configure
}
patchPhase=patchPhase

View File

@@ -4,12 +4,12 @@ assert zlib != null;
assert pythonSupport -> python != null;
stdenv.mkDerivation {
name = "libxml2-2.6.19";
name = "libxml2-2.6.22";
builder = ./builder.sh;
src = fetchurl {
url = ftp://xmlsoft.org/libxml2-2.6.19.tar.gz;
md5 = "61587d43389a414fc2f5223b428e325e";
url = ftp://xmlsoft.org/libxml2-2.6.22.tar.gz;
md5 = "1db8d06b4f49a665a8f47dc6d94450e6";
};
python = if pythonSupport then python else null;