2018-08-15 21:27:39 +01:00
|
|
|
{ stdenv, lib, fetchurl, fetchpatch
|
2018-10-17 08:35:45 +01:00
|
|
|
, zlib, xz, python2, 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
|
|
|
|
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}";
|
2018-03-15 02:51:48 +00:00
|
|
|
version = "2.9.8";
|
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";
|
2018-03-15 02:51:48 +00:00
|
|
|
sha256 = "0ci7is75bwqqw2p32vxvrk6ds51ik7qgx73m920rakv5jlayax0b";
|
2006-10-12 16:43:01 +01:00
|
|
|
};
|
|
|
|
|
2018-08-05 23:20:33 +01:00
|
|
|
patches = [
|
2018-08-15 21:27:39 +01:00
|
|
|
(fetchpatch {
|
|
|
|
name = "CVE-2018-14567_CVE-2018-9251.patch";
|
|
|
|
url = https://gitlab.gnome.org/GNOME/libxml2/commit/2240fbf5912054af025fb6e01e26375100275e74.patch;
|
|
|
|
sha256 = "1xpqsfkzhrqasza51c821mnds5l317djrz8086fmzpyf68vld03h";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
name = "CVE-2018-14404.patch";
|
|
|
|
url = https://gitlab.gnome.org/GNOME/libxml2/commit/a436374994c47b12d5de1b8b1d191a098fa23594.patch;
|
|
|
|
sha256 = "19vp7p32vrninnfa7vk9ipw7n4cl1gg16xxbhjy2d0kwp1crvzqh";
|
2018-08-05 23:20:33 +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"
|
|
|
|
++ lib.optional enableStatic "static";
|
2016-11-08 09:55:21 +00:00
|
|
|
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
|
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;
|
|
|
|
|
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"'';
|
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"
|
2018-06-22 16:44:05 +01:00
|
|
|
'' + lib.optionalString enableStatic ''
|
|
|
|
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
|
|
|
}
|