3
0
Fork 0
forked from mirrors/nixpkgs

sshs: init at 3.2.0

This commit is contained in:
Michal 2022-07-10 20:40:31 +01:00
parent 602e9830e9
commit 190a8c326c
No known key found for this signature in database
GPG key ID: A6A1A4DCB22279B9
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ lib
, buildGoModule
, fetchFromGitHub
, nix-update-script
}:
buildGoModule rec {
pname = "sshs";
version = "3.2.0";
src = fetchFromGitHub {
owner = "quantumsheep";
repo = pname;
rev = version;
sha256 = "D9doNVb2sTnzM8tF8cSJbIoaIYjGurkUHEyhcE3OqQg=";
};
vendorSha256 = "QWFz85bOrTnPGum5atccB5hKeATlZvDAt32by+DO/Fo=";
ldflags = [ "-s" "-w" "-X github.com/quantumsheep/sshs/cmd.Version=${version}" ];
passthru.updateScript = nix-update-script {
attrPath = pname;
};
meta = with lib; {
description = "Terminal user interface for SSH";
homepage = "https://github.com/quantumsheep/sshs";
license = licenses.mit;
maintainers = with maintainers; [ ihatethefrench ];
};
}

View file

@ -2669,6 +2669,8 @@ with pkgs;
sshchecker = callPackage ../tools/security/sshchecker { };
sshs = callPackage ../development/tools/sshs { };
titaniumenv = callPackage ../development/mobile/titaniumenv { };
abootimg = callPackage ../development/mobile/abootimg {};