2016-02-09 14:37:04 +00:00
|
|
|
{ stdenv, lib, fetchurl, zlib, xz, python, findXMLCatalogs, libiconv
|
|
|
|
, supportPython ? (! stdenv ? cross) }:
|
2013-11-11 21:30:34 +00:00
|
|
|
|
2015-10-05 12:23:01 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-07-07 17:24:31 +01:00
|
|
|
name = "libxml2-${version}";
|
2016-01-07 05:24:37 +00:00
|
|
|
version = "2.9.3";
|
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-01-07 05:24:37 +00:00
|
|
|
sha256 = "0bd17g6znn2r98gzpjppsqjg33iraky4px923j3k8kdl8qgy7sad";
|
2006-10-12 16:43:01 +01:00
|
|
|
};
|
|
|
|
|
2016-02-09 14:37:04 +00:00
|
|
|
outputs = [ "dev" "out" "bin" "doc" ]
|
|
|
|
++ lib.optional supportPython "py";
|
|
|
|
propagatedBuildOutputs = "out bin" + lib.optionalString supportPython " py";
|
2015-07-26 12:36:22 +01:00
|
|
|
|
2016-02-09 14:37:04 +00:00
|
|
|
buildInputs = lib.optional supportPython 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
|
|
|
|
|
|
|
propagatedBuildInputs = [ zlib findXMLCatalogs ];
|
2009-02-03 16:14:23 +00:00
|
|
|
|
2016-02-09 14:37:04 +00:00
|
|
|
configureFlags = lib.optional supportPython "--with-python=${python}";
|
2006-10-12 16:43:01 +01:00
|
|
|
|
2012-10-16 16:50:35 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
|
|
|
|
preInstall = lib.optionalString supportPython
|
|
|
|
''substituteInPlace python/libxml2mod.la --replace "${python}" "$py"'';
|
|
|
|
installFlags = lib.optionalString supportPython
|
|
|
|
''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-02-09 14:37:04 +00:00
|
|
|
passthru = { inherit version; pythonSupport = supportPython; };
|
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
|
|
|
}
|