2006-10-12 17:43:01 +02:00
|
|
|
{stdenv, fetchurl, zlib, python ? null, pythonSupport ? true}:
|
|
|
|
|
|
|
|
assert zlib != null;
|
|
|
|
assert pythonSupport -> python != null;
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2007-08-22 12:51:14 +02:00
|
|
|
name = "libxml2-2.6.29";
|
2006-10-12 17:43:01 +02:00
|
|
|
builder = ./builder.sh;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2007-08-22 12:51:14 +02:00
|
|
|
url = ftp://xmlsoft.org/libxml2/libxml2-2.6.29.tar.gz;
|
|
|
|
sha256 = "14jrjvdbvlbc3m0q9p3np67sk18w317n5zfg9a3h7b6pp7h1jjp3";
|
2006-10-12 17:43:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
python = if pythonSupport then python else null;
|
|
|
|
inherit pythonSupport zlib;
|
|
|
|
|
|
|
|
buildInputs = if pythonSupport then [python] else [];
|
|
|
|
propagatedBuildInputs = [zlib];
|
|
|
|
}
|