* Latest libxml2, libxslt.

svn path=/nixpkgs/trunk/; revision=9186
This commit is contained in:
Eelco Dolstra 2007-08-22 10:51:14 +00:00
parent 04fc7a2c92
commit d0d721b0da
2 changed files with 6 additions and 6 deletions

View File

@ -4,12 +4,12 @@ assert zlib != null;
assert pythonSupport -> python != null; assert pythonSupport -> python != null;
stdenv.mkDerivation { stdenv.mkDerivation {
name = "libxml2-2.6.27"; name = "libxml2-2.6.29";
builder = ./builder.sh; builder = ./builder.sh;
src = fetchurl { src = fetchurl {
url = ftp://ftp.gnome.org/pub/GNOME/sources/libxml2/2.6/libxml2-2.6.27.tar.bz2; url = ftp://xmlsoft.org/libxml2/libxml2-2.6.29.tar.gz;
sha256 = "0kp0ghf5wgpv3ny6p4pvv38lj46ykbzsnpqpmv9irg4nidl72wl5"; sha256 = "14jrjvdbvlbc3m0q9p3np67sk18w317n5zfg9a3h7b6pp7h1jjp3";
}; };
python = if pythonSupport then python else null; python = if pythonSupport then python else null;

View File

@ -3,10 +3,10 @@
assert libxml2 != null; assert libxml2 != null;
stdenv.mkDerivation { stdenv.mkDerivation {
name = "libxslt-1.1.20"; name = "libxslt-1.1.21";
src = fetchurl { src = fetchurl {
url = ftp://ftp.gnome.org/pub/GNOME/sources/libxslt/1.1/libxslt-1.1.20.tar.bz2; url = ftp://xmlsoft.org/libxml2/libxslt-1.1.21.tar.gz;
sha256 = "1gwc88dx7pb435qjr4gmf0klildrmp0hf56h2s3dm2578dwy1k21"; sha256 = "1q2lzdp75lx9w4mxgg99znnk94aacn34m7csmbf2kdwvnb7d9vyc";
}; };
buildInputs = [libxml2]; buildInputs = [libxml2];
} }