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