* Remove patch arguments.

svn path=/nixpkgs/trunk/; revision=1462
This commit is contained in:
Eelco Dolstra
2004-09-19 10:34:01 +00:00
parent 4e98bfc5a7
commit dde13d1ada
5 changed files with 9 additions and 11 deletions

View File

@@ -4,7 +4,7 @@
, pythonBindings ? false
, javaBindings ? false
, stdenv, fetchurl
, openssl ? null, httpd ? null, db4 ? null, expat, swig ? null, patch
, openssl ? null, httpd ? null, db4 ? null, expat, swig ? null
}:
assert expat != null;
@@ -35,6 +35,6 @@ stdenv.mkDerivation {
python = if pythonBindings then swig.python else null;
j2sdk = if javaBindings then swig.j2sdk else null;
inherit expat patch localServer httpServer sslSupport
inherit expat localServer httpServer sslSupport
pythonBindings javaBindings;
}