depot/third_party/nixpkgs/pkgs/servers/sshportal/default.nix
Default email 94427deb9d Project import generated by Copybara.
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
2023-05-24 16:37:59 +03:00

24 lines
670 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "sshportal";
version = "1.19.5";
src = fetchFromGitHub {
owner = "moul";
repo = "sshportal";
rev = "v${version}";
sha256 = "sha256-XJ8Hgc8YoJaH2gYOvoYhcpY4qgasgyr4M+ecKJ/RXTs=";
};
ldflags = [ "-X main.GitTag=${version}" "-X main.GitSha=${version}" "-s" "-w" ];
vendorHash = "sha256-4dMZwkLHS14OGQVPq5VaT/aEpHEJ/4b2P6q3/WiDicM=";
meta = with lib; {
description = "Simple, fun and transparent SSH (and telnet) bastion server";
homepage = "https://manfred.life/sshportal";
license = licenses.asl20;
maintainers = with maintainers; [ zaninime ];
};
}