* Added some missing semicolons.

* Some packages needed for the Subversion server.

svn path=/nixpkgs/trunk/; revision=586
This commit is contained in:
Eelco Dolstra
2003-12-21 20:52:13 +00:00
parent 38bc744a0b
commit 480d68ece3
13 changed files with 116 additions and 10 deletions
+10
View File
@@ -0,0 +1,10 @@
#! /bin/sh
buildinputs="$perl $python"
. $stdenv/setup || exit 1
tar xvfz $src || exit 1
cd SWIG-* || exit 1
./configure --prefix=$out || exit 1
make || exit 1
make install || exit 1
@@ -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;
}