3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/sish/default.nix

26 lines
572 B
Nix
Raw Normal View History

2021-04-20 23:06:27 +01:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "sish";
2021-09-15 23:35:05 +01:00
version = "1.1.7";
2021-04-20 23:06:27 +01:00
src = fetchFromGitHub {
owner = "antoniomika";
repo = pname;
rev = "v${version}";
2021-09-15 23:35:05 +01:00
sha256 = "sha256-v/7DhakTVlcbnhujZOoVx5mpeyMwVI4CfYV12QqR7I4=";
2021-04-20 23:06:27 +01:00
};
2021-09-15 23:35:05 +01:00
vendorSha256 = "sha256-eMqHPxewQ9mvBpcBb+13HmaLDabCGt6C+qfbgaW8/YE=";
2021-04-20 23:06:27 +01:00
meta = with lib; {
description = "HTTP(S)/WS(S)/TCP Tunnels to localhost";
homepage = "https://github.com/antoniomika/sish";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}