* Remove a bunch of unused Nix expressions.

svn path=/nixpkgs/trunk/; revision=6716
This commit is contained in:
Eelco Dolstra
2006-10-12 15:43:01 +00:00
parent 85454a47da
commit ef9b025dbe
70 changed files with 65 additions and 726 deletions

View File

@@ -1 +1,8 @@
import ./m4-1.4.7.nix
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "gnum4-1.4.7";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/m4-1.4.7.tar.bz2;
md5 = "0115a354217e36ca396ad258f6749f51";
};
}

View File

@@ -1,8 +0,0 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "gnum4-1.4.7";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/m4-1.4.7.tar.bz2;
md5 = "0115a354217e36ca396ad258f6749f51";
};
}

View File

@@ -1,22 +0,0 @@
{ perlSupport, pythonSupport, javaSupport
, stdenv, fetchurl, perl ? null, python ? null, jdk ? null}:
assert perlSupport -> perl != null;
assert pythonSupport -> python != null;
assert javaSupport -> jdk != null;
stdenv.mkDerivation {
name = "swig-1.3.29";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/swig-1.3.29.tar.gz;
md5 = "44c6f6d8d724cf7fa4a5109e6f63c9b1";
};
inherit perlSupport pythonSupport javaSupport;
perl = if perlSupport then perl else null;
python = if pythonSupport then python else null;
jdk = if javaSupport then jdk else null;
}