Adding inputs to privoxy, so it gets more features (zlib, documentation, pcre)

svn path=/nixpkgs/trunk/; revision=21809
This commit is contained in:
Lluís Batlle i Rossell 2010-05-16 22:14:02 +00:00
parent 03d8babdf5
commit 70302d2d18
2 changed files with 3 additions and 3 deletions

View file

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

View file

@ -1674,7 +1674,7 @@ let
};
privoxy = import ../tools/networking/privoxy {
inherit fetchurl stdenv autoconf automake ;
inherit fetchurl stdenv autoconf automake zlib pcre w3m;
};
tcpdump = import ../tools/networking/tcpdump {