mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Adding inputs to privoxy, so it gets more features (zlib, documentation, pcre)
svn path=/nixpkgs/trunk/; revision=21809
This commit is contained in:
parent
03d8babdf5
commit
70302d2d18
2 changed files with 3 additions and 3 deletions
|
@ -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];
|
||||
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue