nixpkgs/pkgs/development/libraries/libxml2/default.nix

40 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, zlib, xz, python ? null, pythonSupport ? true }:
assert pythonSupport -> python != null;
2012-09-28 21:16:18 +00:00
stdenv.mkDerivation rec {
name = "libxml2-2.9.0";
src = fetchurl {
2012-09-28 21:16:18 +00:00
url = "ftp://xmlsoft.org/libxml2/${name}.tar.gz";
sha256 = "10ib8bpar2pl68aqksfinvfmqknwnk7i35ibq6yjl8dpb0cxj9dd";
};
patches = [ ./pthread-once-init.patch ];
2012-09-28 21:16:18 +00:00
configureFlags = stdenv.lib.optionalString pythonSupport "--with-python=${python}";
buildInputs = (stdenv.lib.optional pythonSupport [ python ])
# 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-28 21:16:18 +00:00
propagatedBuildInputs = [ zlib ];
setupHook = ./setup-hook.sh;
2012-09-28 21:16:18 +00:00
passthru = { inherit pythonSupport; };
enableParallelBuilding = true;
meta = {
homepage = http://xmlsoft.org/;
description = "An XML parsing library for C";
license = "bsd";
2012-09-28 21:16:18 +00:00
platforms = stdenv.lib.platforms.linux;
2012-09-29 18:40:56 +00:00
maintainers = [ stdenv.lib.maintainers.eelco ];
};
}