Merge pull request #154324 from zaninime/sshportal

This commit is contained in:
Sandro 2022-01-27 14:18:38 +01:00 committed by GitHub
commit 4794b2f047
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "sshportal";
version = "1.18.5";
src = fetchFromGitHub {
owner = "moul";
repo = "sshportal";
rev = "v${version}";
sha256 = "1d9zws7b6ng23vyk8di5jmnbsxz7kaj4z8wz43wkwr6b65c2h0bf";
};
ldflags = [ "-X main.GitTag=${version}" "-X main.GitSha=${version}" "-s" "-w" ];
vendorSha256 = "0fnn455adw4bhz68dpqaii08wv7lifdd5kx95rpqxsi2sqrzr4br";
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 ];
};
}

View File

@ -33774,6 +33774,8 @@ with pkgs;
vnote = libsForQt5.callPackage ../applications/office/vnote { };
sshportal = callPackage ../servers/sshportal { };
ssh-audit = callPackage ../tools/security/ssh-audit { };
ssh-tools = callPackage ../applications/misc/ssh-tools { };