* 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,4 +1,4 @@
{stdenv, fetchurl, pkgconfig, xproto, libX11, libXt, libXext, patch}:
{stdenv, fetchurl, pkgconfig, xproto, libX11, libXt, libXext}:
stdenv.mkDerivation {
name = "libXmu-6.2.3";
@@ -6,7 +6,7 @@ stdenv.mkDerivation {
url = http://freedesktop.org/~xlibs/release/libXmu-6.2.3.tar.bz2;
md5 = "7671745bd8a1b0595847541479a327d6";
};
buildInputs = [pkgconfig patch];
buildInputs = [pkgconfig];
propagatedBuildInputs = [xproto libX11 libXt libXext];
patches = ./no-Xaw.patch;
}