9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
32 lines
939 B
Nix
32 lines
939 B
Nix
{ buildGoModule, lib, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "frp";
|
|
version = "0.51.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fatedier";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Nng9WZlKyrEtuVQec5pcfUoZQKWN1IwZ8N7JLc+Mark=";
|
|
};
|
|
|
|
vendorHash = "sha256-pnC4bnb/y9x6hDa6yAwNoWDUlIiAyy6LEdoISlX+S1s=";
|
|
|
|
doCheck = false;
|
|
|
|
subPackages = [ "cmd/frpc" "cmd/frps" ];
|
|
|
|
meta = with lib; {
|
|
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;
|
|
maintainers = with maintainers; [ Br1ght0ne ];
|
|
};
|
|
}
|