2003-12-21 21:52:13 +01:00
|
|
|
{ perlSupport, pythonSupport
|
|
|
|
, stdenv, fetchurl, perl ? null, python ? null}:
|
|
|
|
|
2004-03-29 12:25:25 +02:00
|
|
|
assert perlSupport -> perl != null;
|
|
|
|
assert pythonSupport -> python != null;
|
2003-12-21 21:52:13 +01:00
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2003-12-21 21:52:13 +01:00
|
|
|
name = "swig-1.3.19";
|
|
|
|
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://heanet.dl.sourceforge.net/sourceforge/swig/swig-1.3.19.tar.gz;
|
|
|
|
md5 = "a733455544426b31868dd87fc162e750";
|
|
|
|
};
|
|
|
|
|
|
|
|
perlSupport = perlSupport;
|
|
|
|
pythonSupport = pythonSupport;
|
|
|
|
|
|
|
|
perl = if perlSupport then perl else null;
|
|
|
|
python = if pythonSupport then python else null;
|
|
|
|
}
|