biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / servers / sshportal / default.nix
blob58c0b5a2077f6c7b2659097af54936ec32433189
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "sshportal";
5   version = "1.19.5";
7   src = fetchFromGitHub {
8     owner = "moul";
9     repo = "sshportal";
10     rev = "v${version}";
11     sha256 = "sha256-XJ8Hgc8YoJaH2gYOvoYhcpY4qgasgyr4M+ecKJ/RXTs=";
12   };
14   ldflags = [ "-X main.GitTag=${version}" "-X main.GitSha=${version}" "-s" "-w" ];
16   vendorHash = "sha256-4dMZwkLHS14OGQVPq5VaT/aEpHEJ/4b2P6q3/WiDicM=";
18   meta = with lib; {
19     description = "Simple, fun and transparent SSH (and telnet) bastion server";
20     homepage = "https://manfred.life/sshportal";
21     license = licenses.asl20;
22     maintainers = with maintainers; [ zaninime ];
23     mainProgram = "sshportal";
24   };