nixpkgs/pkgs/tools/networking/frp/default.nix

34 lines
1.0 KiB
Nix
Raw Normal View History

2020-03-21 10:03:00 +00:00
{ buildGoModule, stdenv, fetchFromGitHub, Security }:
2019-11-25 13:55:05 +00:00
buildGoModule rec {
pname = "frp";
2020-03-14 05:38:02 +00:00
version = "0.32.0";
2019-11-25 13:55:05 +00:00
src = fetchFromGitHub {
owner = "fatedier";
repo = pname;
rev = "v${version}";
2020-03-14 05:38:02 +00:00
sha256 = "1hj3xy7ihwl66hyxc1m8k3fwgz5jyx1bd32f80d7266klhjqf6nw";
2019-11-25 13:55:05 +00:00
};
2020-03-14 05:38:02 +00:00
modSha256 = "1v90w5grc0vjpcp0m56d73zi0qnbswgz1rcvcwrjfa3rwqhigbal";
2019-11-25 13:55:05 +00:00
2020-03-21 10:03:00 +00:00
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
2019-11-25 13:55:05 +00:00
subPackages = [ "cmd/frpc" "cmd/frps" ];
2020-03-21 10:03:00 +00:00
meta = with stdenv.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;
maintainers = with maintainers; [ filalex77 ];
platforms = platforms.all;
};
}