* 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

@@ -1,6 +1,6 @@
{stdenv, fetchurl, patch, perl, m4}:
{stdenv, fetchurl, perl, m4}:
assert patch != null && perl != null && m4 != null;
assert perl != null && m4 != null;
stdenv.mkDerivation {
name = "uml-2.4.24-2";
@@ -19,5 +19,5 @@ stdenv.mkDerivation {
# hostfsPatch = ./hostfs.patch;
# hostfsAccessPatch = ./hostfs-access.patch;
config = ./config;
buildInputs = [patch perl m4];
buildInputs = [perl m4];
}