nixpkgs/pkgs/tools/networking/privoxy/default.nix
Rob Vermaas 3e8d1bbe6f coreutils not needed as input for privoxy
svn path=/nixpkgs/trunk/; revision=17647
2009-10-05 15:56:36 +00:00

20 lines
425 B
Nix

{stdenv, fetchurl, autoconf, automake}:
stdenv.mkDerivation {
name = "privoxy-3.0.12";
src = fetchurl {
url = mirror://sourceforge/ijbswa/Sources/3.0.12%20%28stable%29/privoxy-3.0.12-stable-src.tar.gz;
sha256 = "16ngim1p4pb4zk8h7js4zjw280fxqxamasfngixikp2ivmzxl469";
};
buildInputs = [automake autoconf ];
patches = [./disable-user-error.patch];
preConfigure = ''
autoheader
autoconf
'';
}