3
0
Fork 0
forked from mirrors/nixpkgs

coreutils not needed as input for privoxy

svn path=/nixpkgs/trunk/; revision=17647
This commit is contained in:
Rob Vermaas 2009-10-05 15:56:36 +00:00
parent b7321eddce
commit 3e8d1bbe6f

View file

@ -1,4 +1,4 @@
{stdenv, fetchurl, autoconf, automake, coreutils}:
{stdenv, fetchurl, autoconf, automake}:
stdenv.mkDerivation {
name = "privoxy-3.0.12";
@ -8,7 +8,7 @@ stdenv.mkDerivation {
sha256 = "16ngim1p4pb4zk8h7js4zjw280fxqxamasfngixikp2ivmzxl469";
};
buildInputs = [automake autoconf coreutils];
buildInputs = [automake autoconf ];
patches = [./disable-user-error.patch];