2020-03-27 07:33:21 +00:00
|
|
|
{ buildGoModule, lib, fetchFromGitHub }:
|
2019-11-25 13:55:05 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "frp";
|
2021-01-29 02:22:09 +00:00
|
|
|
version = "0.35.1";
|
2019-11-25 13:55:05 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fatedier";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-01-29 02:22:09 +00:00
|
|
|
sha256 = "sha256-QnD8Yo1GLlOuCnYgzAIGW8JQ5yihmAZGqDFJ412L+W0=";
|
2019-11-25 13:55:05 +00:00
|
|
|
};
|
|
|
|
|
2021-01-21 17:53:10 +00:00
|
|
|
vendorSha256 = "sha256-odZPXLn5la2x9QIlT3g7+Rxb9tXGhjTycEvJPUPbM2s=";
|
2019-11-25 13:55:05 +00:00
|
|
|
|
2020-08-04 01:26:27 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2019-11-25 13:55:05 +00:00
|
|
|
subPackages = [ "cmd/frpc" "cmd/frps" ];
|
|
|
|
|
2020-03-27 07:33:21 +00:00
|
|
|
meta = with lib; {
|
2019-11-25 13:55:05 +00:00
|
|
|
description = "Fast reverse proxy";
|
|
|
|
longDescription = ''
|
|
|
|
frp is a fast reverse proxy to help you expose a local server behind a
|
|
|
|
NAT or firewall to the Internet. As of now, it supports TCP and UDP, as
|
|
|
|
well as HTTP and HTTPS protocols, where requests can be forwarded to
|
|
|
|
internal services by domain name. frp also has a P2P connect mode.
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/fatedier/frp";
|
|
|
|
license = licenses.asl20;
|
2020-11-17 11:02:06 +00:00
|
|
|
maintainers = with maintainers; [ Br1ght0ne ];
|
2019-11-25 13:55:05 +00:00
|
|
|
};
|
2020-07-31 04:58:04 +01:00
|
|
|
}
|