2020-03-27 07:33:21 +00:00
|
|
|
{ buildGoModule, lib, fetchFromGitHub }:
|
2019-11-25 13:55:05 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "frp";
|
2021-08-08 12:49:40 +01:00
|
|
|
version = "0.37.1";
|
2019-11-25 13:55:05 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fatedier";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-08-08 12:49:40 +01:00
|
|
|
sha256 = "sha256-TEVSxTzMgoIPcIUmhtRnFSp3xClJmOsIUjpKEr5sId8=";
|
2019-11-25 13:55:05 +00:00
|
|
|
};
|
|
|
|
|
2021-08-08 12:49:40 +01:00
|
|
|
vendorSha256 = "sha256-4vvIobj1I7FbPVJJG4NZogwv4BMo7GRa5Fo5gO2Daws=";
|
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
|
|
|
}
|