nixpkgs/pkgs/development/libraries/libxml2/libxml2-2.6.23.nix
Eelco Dolstra 1442e8ec22 * Copy a bunch of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=6711
2006-10-12 13:50:54 +00:00

20 lines
515 B
Nix

{stdenv, fetchurl, zlib, python ? null, pythonSupport ? true}:
assert zlib != null;
assert pythonSupport -> python != null;
stdenv.mkDerivation {
name = "libxml2-2.6.23";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/libxml2-2.6.23.tar.gz;
md5 = "0f37385e3ad73cc94db43d6873f4fc3b";
};
python = if pythonSupport then python else null;
inherit pythonSupport zlib;
buildInputs = if pythonSupport then [python] else [];
propagatedBuildInputs = [zlib];
}