2004-08-19 17:28:48 +02:00
|
|
|
{stdenv, fetchurl, zlib, python ? null, pythonSupport ? true}:
|
2003-11-06 16:24:19 +01:00
|
|
|
|
2004-03-29 12:25:25 +02:00
|
|
|
assert zlib != null;
|
2004-08-19 17:28:48 +02:00
|
|
|
assert pythonSupport -> python != null;
|
2003-11-06 16:24:19 +01:00
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2005-02-15 17:22:20 +01:00
|
|
|
name = "libxml2-2.6.17";
|
2004-08-19 17:28:48 +02:00
|
|
|
builder = ./builder.sh;
|
|
|
|
|
2003-11-06 16:24:19 +01:00
|
|
|
src = fetchurl {
|
2005-02-15 17:22:20 +01:00
|
|
|
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/libxml2-2.6.17.tar.gz;
|
|
|
|
md5 = "a678d37e68d98788ef51b6f913cdc868";
|
2003-11-06 16:24:19 +01:00
|
|
|
};
|
2004-08-19 17:28:48 +02:00
|
|
|
|
|
|
|
python = if pythonSupport then python else null;
|
|
|
|
inherit pythonSupport;
|
|
|
|
|
|
|
|
buildInputs = if pythonSupport then [python] else [];
|
2004-03-30 19:42:45 +02:00
|
|
|
propagatedBuildInputs = [zlib];
|
2003-11-06 16:24:19 +01:00
|
|
|
}
|