* Added some missing semicolons.
* Some packages needed for the Subversion server. svn path=/nixpkgs/trunk/; revision=586
This commit is contained in:
Executable
+10
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user