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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
572 B
Nix
Raw Normal View History

2021-04-20 23:06:27 +01:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "sish";
2022-09-12 04:00:22 +01:00
version = "2.7.0";
2021-04-20 23:06:27 +01:00
src = fetchFromGitHub {
owner = "antoniomika";
repo = pname;
rev = "v${version}";
2022-09-12 04:00:22 +01:00
sha256 = "sha256-TiS28bqwcTbKKAj1trTOEs2a4FGADrkutIU3DkaTcjE=";
2021-04-20 23:06:27 +01:00
};
2022-09-12 04:00:22 +01:00
vendorSha256 = "sha256-Cky4ggZoNbIZK7w4tL00XqqyDDe0fmYk/+xZvtG/Nmg=";
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 ];
};
}