forked from mirrors/nixpkgs
Merge pull request #180959 from ihatethefrench/master
sshs init at 3.2.0
This commit is contained in:
commit
d2c8b5c93c
|
@ -5412,6 +5412,13 @@
|
|||
githubId = 40234257;
|
||||
name = "ilkecan bozdogan";
|
||||
};
|
||||
ihatethefrench = {
|
||||
email = "michal@tar.black";
|
||||
matrix = "@michal:tar.black";
|
||||
github = "ihatethefrench";
|
||||
githubId = 30374463;
|
||||
name = "Michal S.";
|
||||
};
|
||||
illegalprime = {
|
||||
email = "themichaeleden@gmail.com";
|
||||
github = "illegalprime";
|
||||
|
|
32
pkgs/development/tools/sshs/default.nix
Normal file
32
pkgs/development/tools/sshs/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -2652,6 +2652,8 @@ with pkgs;
|
|||
|
||||
sshchecker = callPackage ../tools/security/sshchecker { };
|
||||
|
||||
sshs = callPackage ../development/tools/sshs { };
|
||||
|
||||
titaniumenv = callPackage ../development/mobile/titaniumenv { };
|
||||
|
||||
abootimg = callPackage ../development/mobile/abootimg {};
|
||||
|
|
Loading…
Reference in a new issue