nixpkgs/pkgs/development/libraries/libxml2/default.nix
Eelco Dolstra d0d721b0da * Latest libxml2, libxslt.
svn path=/nixpkgs/trunk/; revision=9186
2007-08-22 10:51:14 +00:00

21 lines
530 B
Nix

{stdenv, fetchurl, zlib, python ? null, pythonSupport ? true}:
assert zlib != null;
assert pythonSupport -> python != null;
stdenv.mkDerivation {
name = "libxml2-2.6.29";
builder = ./builder.sh;
src = fetchurl {
url = ftp://xmlsoft.org/libxml2/libxml2-2.6.29.tar.gz;
sha256 = "14jrjvdbvlbc3m0q9p3np67sk18w317n5zfg9a3h7b6pp7h1jjp3";
};
python = if pythonSupport then python else null;
inherit pythonSupport zlib;
buildInputs = if pythonSupport then [python] else [];
propagatedBuildInputs = [zlib];
}