Merge pull request #74150 from filalex77/frp-0.29.1
frp: init at 0.30.0
This commit is contained in:
commit
eae8b63720
31
pkgs/tools/networking/frp/default.nix
Normal file
31
pkgs/tools/networking/frp/default.nix
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{ buildGoModule, lib, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "frp";
|
||||||
|
version = "0.30.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "fatedier";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "15q2lfwqyicgllhh5fn3a8g3iw9m42cd0izb99a24hn57pd9cr0n";
|
||||||
|
};
|
||||||
|
|
||||||
|
modSha256 = "1zbl0gfc99pbzdacxhfa1k3y6i7v13sb441wpbp9aygxhvwqrms9";
|
||||||
|
|
||||||
|
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; [ filalex77 ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
@ -9937,6 +9937,8 @@ in
|
|||||||
|
|
||||||
frame = callPackage ../development/libraries/frame { };
|
frame = callPackage ../development/libraries/frame { };
|
||||||
|
|
||||||
|
frp = callPackage ../tools/networking/frp { };
|
||||||
|
|
||||||
fsatrace = callPackage ../development/tools/misc/fsatrace { };
|
fsatrace = callPackage ../development/tools/misc/fsatrace { };
|
||||||
|
|
||||||
fswatch = callPackage ../development/tools/misc/fswatch {
|
fswatch = callPackage ../development/tools/misc/fswatch {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user