2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub }:
|
2017-05-27 16:42:48 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "simpleproxy";
|
2017-05-27 16:42:48 +01:00
|
|
|
version = "3.5";
|
|
|
|
rev = "v.${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
inherit rev;
|
|
|
|
owner = "vzaliva";
|
|
|
|
repo = "simpleproxy";
|
|
|
|
sha256 = "1my9g4vp19dikx3fsbii4ichid1bs9b9in46bkg05gbljhj340f6";
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/vzaliva/simpleproxy";
|
2017-05-27 16:42:48 +01:00
|
|
|
description = "A simple TCP proxy";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.montag451 ];
|
|
|
|
};
|
|
|
|
}
|