From 3e8d1bbe6fa90efb8fd7c7527c1ef4634c8c8d2e Mon Sep 17 00:00:00 2001 From: Rob Vermaas Date: Mon, 5 Oct 2009 15:56:36 +0000 Subject: [PATCH] coreutils not needed as input for privoxy svn path=/nixpkgs/trunk/; revision=17647 --- pkgs/tools/networking/privoxy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/privoxy/default.nix b/pkgs/tools/networking/privoxy/default.nix index 49dc057b33d8..894e11f607b4 100644 --- a/pkgs/tools/networking/privoxy/default.nix +++ b/pkgs/tools/networking/privoxy/default.nix @@ -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];