libxml2: Update to 2.9.0

This commit is contained in:
Eelco Dolstra 2012-09-28 17:16:18 -04:00
parent 7d9593db6d
commit c7658cf9b0
3 changed files with 14 additions and 15 deletions

View File

@ -2,17 +2,15 @@
assert pythonSupport -> python != null;
stdenv.mkDerivation {
name = "libxml2-2.7.8";
stdenv.mkDerivation rec {
name = "libxml2-2.9.0";
src = fetchurl {
url = ftp://xmlsoft.org/libxml2/libxml2-sources-2.7.8.tar.gz;
sha256 = "6a33c3a2d18b902cd049e0faa25dd39f9b554a5b09a3bb56ee07dd7938b11c54";
url = "ftp://xmlsoft.org/libxml2/${name}.tar.gz";
sha256 = "10ib8bpar2pl68aqksfinvfmqknwnk7i35ibq6yjl8dpb0cxj9dd";
};
configureFlags = ''
${if pythonSupport then "--with-python=${python}" else ""}
'';
configureFlags = stdenv.lib.optionalString pythonSupport "--with-python=${python}";
propagatedBuildInputs = [ zlib ];
@ -24,5 +22,7 @@ stdenv.mkDerivation {
homepage = http://xmlsoft.org/;
description = "A XML parsing library for C";
license = "bsd";
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.platforms.eelco ];
};
}

View File

@ -170,7 +170,6 @@ with (import ./release-lib.nix);
libsmbios = linux;
libtool = all;
libtool_2 = all;
libxml2 = all;
libxslt = all;
lout = linux;
lsh = linux;