2017-02-11 03:15:41 +00:00
|
|
|
{ stdenv, lib, fetchurl, fetchpatch
|
|
|
|
, zlib, xz, python2, findXMLCatalogs, libiconv
|
|
|
|
, pythonSupport ? (! stdenv ? cross)
|
|
|
|
, icuSupport ? false, icu ? null }:
|
2013-11-11 21:30:34 +00:00
|
|
|
|
2016-10-17 08:39:10 +01:00
|
|
|
let
|
|
|
|
python = python2;
|
2017-02-11 03:15:41 +00:00
|
|
|
|
2016-10-17 08:39:10 +01:00
|
|
|
in stdenv.mkDerivation rec {
|
2014-07-07 17:24:31 +01:00
|
|
|
name = "libxml2-${version}";
|
2016-05-25 15:37:57 +01:00
|
|
|
version = "2.9.4";
|
2006-10-12 16:43:01 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-04-04 15:07:31 +01:00
|
|
|
url = "http://xmlsoft.org/sources/${name}.tar.gz";
|
2016-05-25 15:37:57 +01:00
|
|
|
sha256 = "0g336cr0bw6dax1q48bblphmchgihx9p1pjmxdnrd6sh3qci3fgz";
|
2006-10-12 16:43:01 +01:00
|
|
|
};
|
|
|
|
|
2016-11-02 19:43:24 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
2017-02-16 19:03:21 +00:00
|
|
|
# Contains fixes for CVE-2016-{4658,5131} and other bugs.
|
|
|
|
name = "misc.patch";
|
|
|
|
url = "https://git.gnome.org/browse/libxml2/patch/?id=e905f081&id2=v2.9.4";
|
|
|
|
sha256 = "14rnzilspmh92bcpwbd6kqikj36gx78al42ilgpqgl1609krb5m5";
|
2016-11-02 19:43:24 +00:00
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "bin" "dev" "out" "doc" ]
|
2016-11-08 09:55:21 +00:00
|
|
|
++ lib.optional pythonSupport "py";
|
|
|
|
propagatedBuildOutputs = "out bin" + lib.optionalString pythonSupport " py";
|
2015-07-26 12:36:22 +01:00
|
|
|
|
2016-11-08 09:55:21 +00:00
|
|
|
buildInputs = lib.optional pythonSupport python
|
2015-06-01 20:38:03 +01:00
|
|
|
# Libxml2 has an optional dependency on liblzma. However, on impure
|
|
|
|
# platforms, it may end up using that from /usr/lib, and thus lack a
|
|
|
|
# RUNPATH for that, leading to undefined references for its users.
|
2016-02-09 14:37:04 +00:00
|
|
|
++ lib.optional stdenv.isFreeBSD xz;
|
2015-06-01 20:38:03 +01:00
|
|
|
|
2017-02-11 03:15:41 +00:00
|
|
|
propagatedBuildInputs = [ zlib findXMLCatalogs ] ++ lib.optional icuSupport icu;
|
2009-02-03 16:14:23 +00:00
|
|
|
|
2017-02-11 03:15:41 +00:00
|
|
|
configureFlags =
|
|
|
|
lib.optional pythonSupport "--with-python=${python}"
|
|
|
|
++ lib.optional icuSupport "--with-icu"
|
2016-05-05 07:18:44 +01:00
|
|
|
++ [ "--exec_prefix=$dev" ];
|
2006-10-12 16:43:01 +01:00
|
|
|
|
2012-10-16 16:50:35 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-05-27 08:45:46 +01:00
|
|
|
doCheck = !stdenv.isDarwin;
|
2016-05-26 14:09:28 +01:00
|
|
|
|
2016-02-09 14:37:04 +00:00
|
|
|
crossAttrs = lib.optionalAttrs (stdenv.cross.libc == "msvcrt") {
|
|
|
|
# creating the DLL is broken ATM
|
|
|
|
dontDisableStatic = true;
|
|
|
|
configureFlags = configureFlags ++ [ "--disable-shared" ];
|
|
|
|
|
|
|
|
# libiconv is a header dependency - propagating is enough
|
|
|
|
propagatedBuildInputs = [ findXMLCatalogs libiconv ];
|
|
|
|
};
|
|
|
|
|
2016-11-08 09:55:21 +00:00
|
|
|
preInstall = lib.optionalString pythonSupport
|
2016-02-09 14:37:04 +00:00
|
|
|
''substituteInPlace python/libxml2mod.la --replace "${python}" "$py"'';
|
2016-11-08 09:55:21 +00:00
|
|
|
installFlags = lib.optionalString pythonSupport
|
2016-02-09 14:37:04 +00:00
|
|
|
''pythondir="$(py)/lib/${python.libPrefix}/site-packages"'';
|
2015-10-05 12:23:01 +01:00
|
|
|
|
|
|
|
postFixup = ''
|
2015-12-02 09:03:23 +00:00
|
|
|
moveToOutput bin/xml2-config "$dev"
|
|
|
|
moveToOutput lib/xml2Conf.sh "$dev"
|
|
|
|
moveToOutput share/man/man1 "$bin"
|
2015-10-05 12:23:01 +01:00
|
|
|
'';
|
|
|
|
|
2016-11-08 09:55:21 +00:00
|
|
|
passthru = { inherit version; pythonSupport = pythonSupport; };
|
2015-10-05 12:23:01 +01:00
|
|
|
|
2015-06-01 20:38:03 +01:00
|
|
|
meta = {
|
2009-02-03 16:14:23 +00:00
|
|
|
homepage = http://xmlsoft.org/;
|
2012-10-23 08:02:40 +01:00
|
|
|
description = "An XML parsing library for C";
|
2015-06-01 20:38:03 +01:00
|
|
|
license = "bsd";
|
2016-02-09 14:37:04 +00:00
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
maintainers = [ lib.maintainers.eelco ];
|
2009-02-03 16:14:23 +00:00
|
|
|
};
|
2015-10-05 12:23:01 +01:00
|
|
|
}
|