privoxy: update the build script, add documentation dependency
This commit is contained in:
parent
3837210fed
commit
b0d281dd58
|
@ -1,4 +1,4 @@
|
||||||
{stdenv, fetchurl, autoconf, automake, zlib, pcre, w3m}:
|
{ stdenv, fetchurl, autoreconfHook, zlib, pcre, w3m, man }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "privoxy-3.0.21";
|
name = "privoxy-3.0.21";
|
||||||
|
@ -8,10 +8,13 @@ stdenv.mkDerivation {
|
||||||
sha256 = "1f6xb7aa47p90c26vqaw74y6drs9gpnhxsgby3mx0awdjh0ydisy";
|
sha256 = "1f6xb7aa47p90c26vqaw74y6drs9gpnhxsgby3mx0awdjh0ydisy";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [automake autoconf zlib pcre w3m];
|
buildInputs = [ autoreconfHook zlib pcre w3m man ];
|
||||||
|
|
||||||
preConfigure = ''
|
meta = with stdenv.lib; {
|
||||||
autoheader
|
homepage = http://www.privoxy.org/;
|
||||||
autoconf
|
description = "Non-caching web proxy with advanced filtering capabilities";
|
||||||
'';
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.all;
|
||||||
|
maintainers = [ maintainers.phreedom ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1868,9 +1868,7 @@ let
|
||||||
|
|
||||||
sitecopy = callPackage ../tools/networking/sitecopy { };
|
sitecopy = callPackage ../tools/networking/sitecopy { };
|
||||||
|
|
||||||
privoxy = callPackage ../tools/networking/privoxy {
|
privoxy = callPackage ../tools/networking/privoxy { };
|
||||||
autoconf = autoconf213;
|
|
||||||
};
|
|
||||||
|
|
||||||
tarsnap = callPackage ../tools/backup/tarsnap { };
|
tarsnap = callPackage ../tools/backup/tarsnap { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue