* Updated libxml2 / libxslt.

svn path=/nixpkgs/branches/xorg-7.5/; revision=18053
This commit is contained in:
Eelco Dolstra
2009-10-30 12:42:48 +00:00
parent 6f04e6a5d6
commit f01feca4ef
4 changed files with 11 additions and 43 deletions
@@ -1,11 +1,11 @@
{stdenv, fetchurl, libxml2, ...}:
stdenv.mkDerivation {
name = "libxslt-1.1.24";
stdenv.mkDerivation rec {
name = "libxslt-1.1.26";
src = fetchurl {
url = ftp://xmlsoft.org/libxml2/libxslt-1.1.24.tar.gz;
sha256 = "c0c10944841e9a79f29d409c6f8da0d1b1af0403eb3819c82c788dfa6a180b3e";
url = "ftp://xmlsoft.org/libxml2/${name}.tar.gz";
sha256 = "1c9xdv39jvq1hp16gsbi56hbz032dmqyy0fpi4ls1y3152s55pam";
};
buildInputs = [libxml2];
@@ -18,5 +18,6 @@ stdenv.mkDerivation {
meta = {
homepage = http://xmlsoft.org/XSLT/;
description = "A C library and tools to do XSL transformations";
license = "bsd";
};
}