privoxy: update the build script, add documentation dependency

This commit is contained in:
Evgeny Egorochkin 2013-12-04 04:41:25 +02:00
parent 3837210fed
commit b0d281dd58
2 changed files with 10 additions and 9 deletions

View file

@ -1,4 +1,4 @@
{stdenv, fetchurl, autoconf, automake, zlib, pcre, w3m}:
{ stdenv, fetchurl, autoreconfHook, zlib, pcre, w3m, man }:
stdenv.mkDerivation {
name = "privoxy-3.0.21";
@ -8,10 +8,13 @@ stdenv.mkDerivation {
sha256 = "1f6xb7aa47p90c26vqaw74y6drs9gpnhxsgby3mx0awdjh0ydisy";
};
buildInputs = [automake autoconf zlib pcre w3m];
buildInputs = [ autoreconfHook zlib pcre w3m man ];
preConfigure = ''
autoheader
autoconf
'';
meta = with stdenv.lib; {
homepage = http://www.privoxy.org/;
description = "Non-caching web proxy with advanced filtering capabilities";
license = licenses.gpl2;
platforms = platforms.all;
maintainers = [ maintainers.phreedom ];
};
}

View file

@ -1868,9 +1868,7 @@ let
sitecopy = callPackage ../tools/networking/sitecopy { };
privoxy = callPackage ../tools/networking/privoxy {
autoconf = autoconf213;
};
privoxy = callPackage ../tools/networking/privoxy { };
tarsnap = callPackage ../tools/backup/tarsnap { };