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

@ -1,28 +1,28 @@
{stdenv, fetchurl, zlib, python ? null, pythonSupport ? true }: { stdenv, fetchurl, zlib, python ? null, pythonSupport ? true }:
assert pythonSupport -> python != null; assert pythonSupport -> python != null;
stdenv.mkDerivation { stdenv.mkDerivation rec {
name = "libxml2-2.7.8"; name = "libxml2-2.9.0";
src = fetchurl { src = fetchurl {
url = ftp://xmlsoft.org/libxml2/libxml2-sources-2.7.8.tar.gz; url = "ftp://xmlsoft.org/libxml2/${name}.tar.gz";
sha256 = "6a33c3a2d18b902cd049e0faa25dd39f9b554a5b09a3bb56ee07dd7938b11c54"; sha256 = "10ib8bpar2pl68aqksfinvfmqknwnk7i35ibq6yjl8dpb0cxj9dd";
}; };
configureFlags = '' configureFlags = stdenv.lib.optionalString pythonSupport "--with-python=${python}";
${if pythonSupport then "--with-python=${python}" else ""}
'';
propagatedBuildInputs = [zlib]; propagatedBuildInputs = [ zlib ];
setupHook = ./setup-hook.sh; setupHook = ./setup-hook.sh;
passthru = {inherit pythonSupport;}; passthru = { inherit pythonSupport; };
meta = { meta = {
homepage = http://xmlsoft.org/; homepage = http://xmlsoft.org/;
description = "A XML parsing library for C"; description = "A XML parsing library for C";
license = "bsd"; 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; libsmbios = linux;
libtool = all; libtool = all;
libtool_2 = all; libtool_2 = all;
libxml2 = all;
libxslt = all; libxslt = all;
lout = linux; lout = linux;
lsh = linux; lsh = linux;