2014-11-25 15:02:19 +00:00
|
|
|
{ stdenv, fetchurl, zlib, xz, python ? null, pythonSupport ? true, findXMLCatalogs }:
|
2006-10-12 16:43:01 +01:00
|
|
|
|
|
|
|
assert pythonSupport -> python != null;
|
|
|
|
|
2013-11-11 21:30:34 +00:00
|
|
|
#TODO: share most stuff between python and non-python builds, perhaps via multiple-output
|
|
|
|
|
2014-07-07 17:24:31 +01:00
|
|
|
let
|
2014-10-27 19:06:59 +00:00
|
|
|
version = "2.9.2";
|
2014-07-07 17:24:31 +01:00
|
|
|
in
|
|
|
|
|
2013-11-11 21:30:34 +00:00
|
|
|
stdenv.mkDerivation (rec {
|
2014-07-07 17:24:31 +01:00
|
|
|
name = "libxml2-${version}";
|
2006-10-12 16:43:01 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-09-28 22:16:18 +01:00
|
|
|
url = "ftp://xmlsoft.org/libxml2/${name}.tar.gz";
|
2014-10-27 19:06:59 +00:00
|
|
|
sha256 = "1g6mf03xcabmk5ing1lwqmasr803616gb2xhn7pll10x2l5w6y2i";
|
2006-10-12 16:43:01 +01:00
|
|
|
};
|
|
|
|
|
2013-11-11 21:30:34 +00:00
|
|
|
buildInputs = stdenv.lib.optional pythonSupport python
|
2012-10-23 08:02:40 +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.
|
|
|
|
++ (stdenv.lib.optional stdenv.isFreeBSD xz);
|
2012-09-29 17:08:25 +01:00
|
|
|
|
2014-11-25 15:02:19 +00:00
|
|
|
propagatedBuildInputs = [ zlib findXMLCatalogs ];
|
2009-02-03 16:14:23 +00:00
|
|
|
|
2014-07-07 17:24:31 +01:00
|
|
|
passthru = { inherit pythonSupport version; };
|
2006-10-12 16:43:01 +01:00
|
|
|
|
2012-10-16 16:50:35 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2009-02-03 16:14:23 +00:00
|
|
|
meta = {
|
|
|
|
homepage = http://xmlsoft.org/;
|
2012-10-23 08:02:40 +01:00
|
|
|
description = "An XML parsing library for C";
|
2009-10-30 12:42:48 +00:00
|
|
|
license = "bsd";
|
2013-11-05 09:46:59 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2012-09-29 19:40:56 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
2009-02-03 16:14:23 +00:00
|
|
|
};
|
2013-11-11 21:30:34 +00:00
|
|
|
|
|
|
|
} // stdenv.lib.optionalAttrs pythonSupport {
|
|
|
|
configureFlags = "--with-python=${python}";
|
|
|
|
|
|
|
|
# this is a pair of ugly hacks to make python stuff install into the right place
|
|
|
|
preInstall = ''substituteInPlace python/libxml2mod.la --replace "${python}" "$out"'';
|
|
|
|
installFlags = ''pythondir="$(out)/lib/${python.libPrefix}/site-packages"'';
|
2013-11-12 13:05:54 +00:00
|
|
|
|
2013-12-16 17:47:20 +00:00
|
|
|
} // stdenv.lib.optionalAttrs (!pythonSupport) {
|
2013-11-12 13:05:54 +00:00
|
|
|
configureFlags = "--with-python=no"; # otherwise build impurity bites us
|
2013-11-11 21:30:34 +00:00
|
|
|
})
|
|
|
|
|