2018-07-20 17:44:44 -07:00
|
|
|
{ stdenv, lib, fetchurl
|
2018-07-23 12:37:08 -07:00
|
|
|
, zlib, xz, python2, findXMLCatalogs
|
2017-02-10 20:48:28 -08:00
|
|
|
, buildPlatform, hostPlatform
|
|
|
|
, pythonSupport ? buildPlatform == hostPlatform
|
|
|
|
, icuSupport ? false, icu ? null
|
2018-07-23 12:37:08 -07:00
|
|
|
, enableShared ? hostPlatform.libc != "msvcrt"
|
|
|
|
, enableStatic ? !enableShared,
|
2017-02-10 20:48:28 -08:00
|
|
|
}:
|
2013-11-11 13:30:34 -08:00
|
|
|
|
2016-10-17 00:39:10 -07:00
|
|
|
let
|
|
|
|
python = python2;
|
2017-02-10 19:15:41 -08:00
|
|
|
|
2016-10-17 00:39:10 -07:00
|
|
|
in stdenv.mkDerivation rec {
|
2014-07-07 09:24:31 -07:00
|
|
|
name = "libxml2-${version}";
|
2018-03-14 19:51:48 -07:00
|
|
|
version = "2.9.8";
|
2006-10-12 08:43:01 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-04-04 07:07:31 -07:00
|
|
|
url = "http://xmlsoft.org/sources/${name}.tar.gz";
|
2018-03-14 19:51:48 -07:00
|
|
|
sha256 = "0ci7is75bwqqw2p32vxvrk6ds51ik7qgx73m920rakv5jlayax0b";
|
2006-10-12 08:43:01 -07:00
|
|
|
};
|
|
|
|
|
2018-06-13 09:07:54 -07:00
|
|
|
outputs = [ "bin" "dev" "out" "man" "doc" ]
|
2018-06-22 08:44:05 -07:00
|
|
|
++ lib.optional pythonSupport "py"
|
|
|
|
++ lib.optional enableStatic "static";
|
2016-11-08 01:55:21 -08:00
|
|
|
propagatedBuildOutputs = "out bin" + lib.optionalString pythonSupport " py";
|
2015-07-26 04:36:22 -07:00
|
|
|
|
2016-11-08 01:55:21 -08:00
|
|
|
buildInputs = lib.optional pythonSupport python
|
2015-06-01 12:38:03 -07: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 06:37:04 -08:00
|
|
|
++ lib.optional stdenv.isFreeBSD xz;
|
2015-06-01 12:38:03 -07:00
|
|
|
|
2017-02-10 19:15:41 -08:00
|
|
|
propagatedBuildInputs = [ zlib findXMLCatalogs ] ++ lib.optional icuSupport icu;
|
2009-02-03 08:14:23 -08:00
|
|
|
|
2017-02-10 19:15:41 -08:00
|
|
|
configureFlags =
|
|
|
|
lib.optional pythonSupport "--with-python=${python}"
|
|
|
|
++ lib.optional icuSupport "--with-icu"
|
2018-06-22 08:44:05 -07:00
|
|
|
++ [ "--exec_prefix=$dev" ]
|
2018-07-23 12:37:08 -07:00
|
|
|
++ lib.optional enableStatic "--enable-static"
|
|
|
|
++ lib.optional (!enableShared) "--disable-shared";
|
2006-10-12 08:43:01 -07:00
|
|
|
|
2012-10-16 08:50:35 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-01-12 00:27:33 -08:00
|
|
|
doCheck = (stdenv.hostPlatform == stdenv.buildPlatform) && !stdenv.isDarwin &&
|
|
|
|
hostPlatform.libc != "musl";
|
2016-05-26 06:09:28 -07:00
|
|
|
|
2016-11-08 01:55:21 -08:00
|
|
|
preInstall = lib.optionalString pythonSupport
|
2016-02-09 06:37:04 -08:00
|
|
|
''substituteInPlace python/libxml2mod.la --replace "${python}" "$py"'';
|
2016-11-08 01:55:21 -08:00
|
|
|
installFlags = lib.optionalString pythonSupport
|
2016-02-09 06:37:04 -08:00
|
|
|
''pythondir="$(py)/lib/${python.libPrefix}/site-packages"'';
|
2015-10-05 04:23:01 -07:00
|
|
|
|
|
|
|
postFixup = ''
|
2015-12-02 01:03:23 -08:00
|
|
|
moveToOutput bin/xml2-config "$dev"
|
|
|
|
moveToOutput lib/xml2Conf.sh "$dev"
|
|
|
|
moveToOutput share/man/man1 "$bin"
|
2018-06-22 08:44:05 -07:00
|
|
|
'' + lib.optionalString enableStatic ''
|
|
|
|
moveToOutput lib/libxml2.a "$static"
|
2015-10-05 04:23:01 -07:00
|
|
|
'';
|
|
|
|
|
2016-11-08 01:55:21 -08:00
|
|
|
passthru = { inherit version; pythonSupport = pythonSupport; };
|
2015-10-05 04:23:01 -07:00
|
|
|
|
2015-06-01 12:38:03 -07:00
|
|
|
meta = {
|
2009-02-03 08:14:23 -08:00
|
|
|
homepage = http://xmlsoft.org/;
|
2012-10-23 00:02:40 -07:00
|
|
|
description = "An XML parsing library for C";
|
2017-04-28 20:02:37 -07:00
|
|
|
license = lib.licenses.mit;
|
2018-07-20 10:56:15 -07:00
|
|
|
platforms = lib.platforms.all;
|
2016-02-09 06:37:04 -08:00
|
|
|
maintainers = [ lib.maintainers.eelco ];
|
2009-02-03 08:14:23 -08:00
|
|
|
};
|
2015-10-05 04:23:01 -07:00
|
|
|
}
|