libxml2: Update to 2.9.0
This commit is contained in:
parent
7d9593db6d
commit
c7658cf9b0
@ -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 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
addXMLCatalogs () {
|
addXMLCatalogs () {
|
||||||
for kind in dtd xsl; do
|
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
|
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
|
done
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user