2021-05-19 09:42:04 +02:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, perl, withDebug ? false }:
|
2018-08-02 10:36:57 +02:00
|
|
|
|
2020-06-07 23:11:08 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "tinyproxy";
|
2021-05-19 09:42:04 +02:00
|
|
|
version = "1.11.0";
|
2018-08-02 10:36:57 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2021-05-19 09:42:04 +02:00
|
|
|
sha256 = "13fhkmmrwzl657dq04x2wagkpjwdrzhkl141qvzr7y7sli8j0w1n";
|
2019-09-09 01:38:31 +02:00
|
|
|
rev = version;
|
2018-08-02 10:36:57 +02:00
|
|
|
repo = "tinyproxy";
|
|
|
|
owner = "tinyproxy";
|
|
|
|
};
|
|
|
|
|
2021-05-19 09:42:04 +02:00
|
|
|
# perl is needed for man page generation.
|
|
|
|
nativeBuildInputs = [ autoreconfHook perl ];
|
2018-08-02 10:36:57 +02:00
|
|
|
|
2021-05-19 09:42:04 +02:00
|
|
|
configureFlags = lib.optionals withDebug [ "--enable-debug" ]; # Enable debugging support code and methods.
|
2018-08-02 10:36:57 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://tinyproxy.github.io/";
|
2018-08-02 10:36:57 +02:00
|
|
|
description = "A light-weight HTTP/HTTPS proxy daemon for POSIX operating systems";
|
2021-05-19 09:42:04 +02:00
|
|
|
license = licenses.gpl2Only;
|
2018-08-02 10:36:57 +02:00
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ maintainers.carlosdagos ];
|
|
|
|
};
|
|
|
|
}
|