* Added some missing semicolons.
* Some packages needed for the Subversion server. svn path=/nixpkgs/trunk/; revision=586
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
{ perlSupport, pythonSupport
|
||||
, stdenv, fetchurl, perl ? null, python ? null}:
|
||||
|
||||
assert perlSupport -> !isNull perl;
|
||||
assert pythonSupport -> !isNull python;
|
||||
|
||||
derivation {
|
||||
name = "swig-1.3.19";
|
||||
system = stdenv.system;
|
||||
|
||||
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;
|
||||
|
||||
stdenv = stdenv;
|
||||
perl = if perlSupport then perl else null;
|
||||
python = if pythonSupport then python else null;
|
||||
}
|
||||
Reference in New Issue
Block a user