Merge pull request #154324 from zaninime/sshportal

authored by Sandro and committed by GitHub 4794b2f0 90087b35

+26
+24
pkgs/servers/sshportal/default.nix
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "sshportal"; 5 + version = "1.18.5"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "moul"; 9 + repo = "sshportal"; 10 + rev = "v${version}"; 11 + sha256 = "1d9zws7b6ng23vyk8di5jmnbsxz7kaj4z8wz43wkwr6b65c2h0bf"; 12 + }; 13 + 14 + ldflags = [ "-X main.GitTag=${version}" "-X main.GitSha=${version}" "-s" "-w" ]; 15 + 16 + vendorSha256 = "0fnn455adw4bhz68dpqaii08wv7lifdd5kx95rpqxsi2sqrzr4br"; 17 + 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 + }; 24 + }
+2
pkgs/top-level/all-packages.nix
··· 33774 33774 33775 33775 vnote = libsForQt5.callPackage ../applications/office/vnote { }; 33776 33776 33777 + sshportal = callPackage ../servers/sshportal { }; 33778 + 33777 33779 ssh-audit = callPackage ../tools/security/ssh-audit { }; 33778 33780 33779 33781 ssh-tools = callPackage ../applications/misc/ssh-tools { };