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