2020-02-01 22:34:21 +00:00
|
|
|
{ stdenv, lib, fetchurl, fetchpatch
|
2019-06-15 19:32:23 +01:00
|
|
|
, zlib, xz, python, ncurses, findXMLCatalogs
|
2018-08-20 19:43:41 +01:00
|
|
|
, pythonSupport ? stdenv.buildPlatform == stdenv.hostPlatform
|
2017-02-11 04:48:28 +00:00
|
|
|
, icuSupport ? false, icu ? null
|
2018-08-20 19:43:41 +01:00
|
|
|
, enableShared ? stdenv.hostPlatform.libc != "msvcrt"
|
2018-07-23 20:37:08 +01:00
|
|
|
, enableStatic ? !enableShared,
|
2017-02-11 04:48:28 +00:00
|
|
|
}:
|
2013-11-11 21:30:34 +00:00
|
|
|
|
2019-06-15 19:32:23 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libxml2";
|
2019-11-10 20:51:04 +00:00
|
|
|
version = "2.9.10";
|
2006-10-12 16:43:01 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "http://xmlsoft.org/sources/${pname}-${version}.tar.gz";
|
2019-11-10 20:51:04 +00:00
|
|
|
sha256 = "07xynh8hcxb2yb1fs051xrgszjvj37wnxvxgsj10rzmqzy9y3zma";
|
2006-10-12 16:43:01 +01:00
|
|
|
};
|
2019-11-01 00:00:56 +00:00
|
|
|
patches = [
|
|
|
|
# Upstream bugs:
|
|
|
|
# https://bugzilla.gnome.org/show_bug.cgi?id=789714
|
|
|
|
# https://gitlab.gnome.org/GNOME/libxml2/issues/64
|
|
|
|
# Patch from https://bugzilla.opensuse.org/show_bug.cgi?id=1065270 ,
|
|
|
|
# but only the UTF-8 part.
|
|
|
|
# Can also be mitigated by fixing malformed XML inputs, such as in
|
|
|
|
# https://gitlab.gnome.org/GNOME/gnumeric/merge_requests/3 .
|
|
|
|
# Other discussion:
|
|
|
|
# https://github.com/itstool/itstool/issues/22
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/63174
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/72342
|
|
|
|
./utf8-xmlErrorFuncHandler.patch
|
2020-02-01 22:34:21 +00:00
|
|
|
(fetchpatch {
|
|
|
|
name = "CVE-2020-7595.patch";
|
|
|
|
url = "https://gitlab.gnome.org/GNOME/libxml2/commit/0e1a49c8907645d2e155f0d89d4d9895ac5112b5.patch";
|
|
|
|
sha256 = "0klvaxkzakkpyq0m44l9xrpn5kwaii194sqsivfm6zhnb9hhl15l";
|
|
|
|
})
|
2019-11-01 00:00:56 +00:00
|
|
|
];
|
2006-10-12 16:43:01 +01:00
|
|
|
|
2018-06-13 17:07:54 +01:00
|
|
|
outputs = [ "bin" "dev" "out" "man" "doc" ]
|
2018-06-22 16:44:05 +01:00
|
|
|
++ lib.optional pythonSupport "py"
|
2018-11-10 19:47:09 +00:00
|
|
|
++ lib.optional (enableStatic && enableShared) "static";
|
2015-07-26 12:36:22 +01:00
|
|
|
|
2016-11-08 09:55:21 +00:00
|
|
|
buildInputs = lib.optional pythonSupport python
|
2018-10-17 08:35:45 +01:00
|
|
|
++ lib.optional (pythonSupport && python?isPy3 && python.isPy3) ncurses
|
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
|
|
|
|
2018-07-25 01:13:43 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--exec_prefix=$dev"
|
|
|
|
(lib.enableFeature enableStatic "static")
|
|
|
|
(lib.enableFeature enableShared "shared")
|
|
|
|
(lib.withFeature icuSupport "icu")
|
|
|
|
(lib.withFeatureAs pythonSupport "python" python)
|
|
|
|
];
|
2006-10-12 16:43:01 +01:00
|
|
|
|
2012-10-16 16:50:35 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2019-11-10 20:51:04 +00:00
|
|
|
# disable test that's problematic with newer pythons: see
|
|
|
|
# https://mail.gnome.org/archives/xml/2017-August/msg00014.html
|
|
|
|
preCheck = lib.optionalString (pythonSupport && !(python?pythonOlder && python.pythonOlder "3.5")) ''
|
|
|
|
echo "" > python/tests/tstLastError.py
|
|
|
|
'';
|
|
|
|
|
2018-01-12 08:27:33 +00:00
|
|
|
doCheck = (stdenv.hostPlatform == stdenv.buildPlatform) && !stdenv.isDarwin &&
|
2018-08-20 19:43:41 +01:00
|
|
|
stdenv.hostPlatform.libc != "musl";
|
2016-05-26 14:09:28 +01:00
|
|
|
|
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"'';
|
2019-08-19 15:28:28 +01:00
|
|
|
installFlags = lib.optional pythonSupport
|
|
|
|
"pythondir=\"${placeholder ''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"
|
2018-11-10 19:47:09 +00:00
|
|
|
'' + lib.optionalString (enableStatic && enableShared) ''
|
2018-06-22 16:44:05 +01:00
|
|
|
moveToOutput lib/libxml2.a "$static"
|
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";
|
2017-04-29 04:02:37 +01:00
|
|
|
license = lib.licenses.mit;
|
2018-07-20 18:56:15 +01:00
|
|
|
platforms = lib.platforms.all;
|
2016-02-09 14:37:04 +00:00
|
|
|
maintainers = [ lib.maintainers.eelco ];
|
2009-02-03 16:14:23 +00:00
|
|
|
};
|
2015-10-05 12:23:01 +01:00
|
|
|
}
|