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

31 lines
789 B
Nix
Raw Normal View History

2012-09-28 21:16:18 +00:00
{ stdenv, fetchurl, zlib, 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";
};
2012-09-28 21:16:18 +00:00
configureFlags = stdenv.lib.optionalString pythonSupport "--with-python=${python}";
buildInputs = stdenv.lib.optional pythonSupport [ python ];
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; };
meta = {
homepage = http://xmlsoft.org/;
description = "A 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 ];
};
}