2015-10-05 12:23:01 +01:00
|
|
|
{ stdenv, fetchurl, zlib, xz, python, findXMLCatalogs }:
|
2013-11-11 21:30:34 +00:00
|
|
|
|
2014-07-07 17:24:31 +01:00
|
|
|
let
|
2015-06-01 20:38:03 +01:00
|
|
|
version = "2.9.2";
|
2015-10-05 12:23:01 +01:00
|
|
|
inherit (stdenv.lib) optional;
|
2014-07-07 17:24:31 +01:00
|
|
|
in
|
2015-06-01 20:38:03 +01:00
|
|
|
|
2015-10-05 12:23:01 +01: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 {
|
2015-04-04 15:07:31 +01:00
|
|
|
url = "http://xmlsoft.org/sources/${name}.tar.gz";
|
2014-10-27 19:06:59 +00:00
|
|
|
sha256 = "1g6mf03xcabmk5ing1lwqmasr803616gb2xhn7pll10x2l5w6y2i";
|
2006-10-12 16:43:01 +01:00
|
|
|
};
|
|
|
|
|
2015-10-05 12:23:01 +01:00
|
|
|
outputs = [ "dev" "out" "bin" "doc" "py" ];
|
|
|
|
propagatedOutputs = "out bin py";
|
2015-07-26 12:36:22 +01:00
|
|
|
|
2015-10-05 12:23:01 +01:00
|
|
|
buildInputs = [ 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.
|
2015-10-05 12:23:01 +01:00
|
|
|
++ optional stdenv.isFreeBSD xz;
|
2015-06-01 20:38:03 +01:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ zlib findXMLCatalogs ];
|
2009-02-03 16:14:23 +00:00
|
|
|
|
2015-10-05 12:23:01 +01:00
|
|
|
configureFlags = "--with-python=${python}";
|
2006-10-12 16:43:01 +01:00
|
|
|
|
2012-10-16 16:50:35 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-10-05 12:23:01 +01:00
|
|
|
preInstall = ''substituteInPlace python/libxml2mod.la --replace "${python}" "$py"'';
|
|
|
|
installFlags = ''pythondir="$(py)/lib/${python.libPrefix}/site-packages"'';
|
|
|
|
|
|
|
|
postFixup = ''
|
|
|
|
_moveToOutput bin/xml2-config "$dev"
|
|
|
|
_moveToOutput lib/xml2Conf.sh "$dev"
|
|
|
|
_moveToOutput share/man/man1 "$bin"
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru = { inherit version; pythonSupport = true; };
|
|
|
|
|
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";
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
2009-02-03 16:14:23 +00:00
|
|
|
};
|
2015-10-05 12:23:01 +01:00
|
|
|
}
|
2015-06-01 20:38:03 +01:00
|
|
|
|