2012-10-23 07:02:40 +00:00
|
|
|
{ stdenv, fetchurl, zlib, xz, python ? null, pythonSupport ? true }:
|
2006-10-12 15:43:01 +00: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 16:24:31 +00:00
|
|
|
let
|
|
|
|
version = "2.9.1";
|
|
|
|
in
|
|
|
|
|
2013-11-11 21:30:34 +00:00
|
|
|
stdenv.mkDerivation (rec {
|
2014-07-07 16:24:31 +00:00
|
|
|
name = "libxml2-${version}";
|
2006-10-12 15:43:01 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-09-28 21:16:18 +00:00
|
|
|
url = "ftp://xmlsoft.org/libxml2/${name}.tar.gz";
|
2013-11-11 21:30:34 +00:00
|
|
|
sha256 = "1nqgd1qqmg0cg09mch78m2ac9klj9n87blilx4kymi7jcv5n8g7x";
|
2006-10-12 15:43:01 +00:00
|
|
|
};
|
|
|
|
|
2013-11-11 21:30:34 +00:00
|
|
|
buildInputs = stdenv.lib.optional pythonSupport python
|
2012-10-23 07:02:40 +00: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 16:08:25 +00:00
|
|
|
|
2012-09-28 21:16:18 +00:00
|
|
|
propagatedBuildInputs = [ zlib ];
|
2009-02-03 16:14:23 +00:00
|
|
|
|
2009-04-23 12:35:36 +00:00
|
|
|
setupHook = ./setup-hook.sh;
|
2009-02-03 16:14:23 +00:00
|
|
|
|
2014-07-07 16:24:31 +00:00
|
|
|
passthru = { inherit pythonSupport version; };
|
2006-10-12 15:43:01 +00:00
|
|
|
|
2012-10-16 15:50:35 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2009-02-03 16:14:23 +00:00
|
|
|
meta = {
|
|
|
|
homepage = http://xmlsoft.org/;
|
2012-10-23 07:02:40 +00: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 18:40:56 +00: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
|
|
|
})
|
|
|
|
|