added privoxy

svn path=/nixpkgs/trunk/; revision=17645
This commit is contained in:
Rob Vermaas
2009-10-05 14:15:28 +00:00
parent 06e0f87d6e
commit b7321eddce
3 changed files with 89 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{stdenv, fetchurl, autoconf, automake, coreutils}:
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 coreutils];
patches = [./disable-user-error.patch];
preConfigure = ''
autoheader
autoconf
'';
}