2011-05-07 23:41:34 +00:00
|
|
|
{ stdenv, fetchurl, texinfo }:
|
|
|
|
|
2014-07-15 14:07:25 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "polipo";
|
2014-07-15 14:07:25 +00:00
|
|
|
version = "1.1.1";
|
2011-05-07 23:41:34 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "http://www.pps.univ-paris-diderot.fr/~jch/software/files/polipo/${pname}-${version}.tar.gz";
|
2014-07-15 14:07:25 +00:00
|
|
|
sha256 = "05g09sg9qkkhnc2mxldm1w1xkxzs2ylybkjzs28w8ydbjc3pand2";
|
2011-05-07 23:41:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ texinfo ];
|
|
|
|
makeFlags = [ "PREFIX=$(out)" "LOCAL_ROOT=$(out)/share/polipo/www" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.pps.jussieu.fr/~jch/software/polipo/;
|
|
|
|
description = "A small and fast caching web proxy";
|
|
|
|
license = licenses.mit;
|
2015-12-05 21:41:25 +00:00
|
|
|
maintainers = with maintainers; [ phreedom ehmry ];
|
2011-05-07 23:41:34 +00:00
|
|
|
platforms = platforms.all;
|
2018-02-08 17:49:28 +00:00
|
|
|
knownVulnerabilities = [
|
|
|
|
"Unmaintained upstream: https://github.com/jech/polipo/commit/4d42ca1b5849"
|
|
|
|
];
|
2011-05-07 23:41:34 +00:00
|
|
|
};
|
2018-02-08 17:49:28 +00:00
|
|
|
}
|