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;
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 ""}
'';
propagatedBuildInputs = [zlib];
configureFlags = stdenv.lib.optionalString pythonSupport "--with-python=${python}";
propagatedBuildInputs = [ zlib ];
setupHook = ./setup-hook.sh;
passthru = {inherit pythonSupport;};
passthru = { inherit pythonSupport; };
meta = {
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

@ -1,10 +1,10 @@
addXMLCatalogs () {
for kind in dtd xsl; do
if test -d $1/xml/$kind; then
if test -d $1/xml/$kind; then
for i in $(find $1/xml/$kind -name catalog.xml); do
export XML_CATALOG_FILES="$XML_CATALOG_FILES $i"
export XML_CATALOG_FILES="$XML_CATALOG_FILES $i"
done
fi
fi
done
}

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;