mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 02:13:23 +00:00
commit
168ea37b0f
29
pkgs/tools/networking/sshed/default.nix
Normal file
29
pkgs/tools/networking/sshed/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "sshed";
|
||||
version = "1.2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "trntv";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
hash = "sha256-y8IQzOGs78T44jLcNNjPlfopyptX3Mhv2LdawqS1T+U=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-21Vh5Zaja5rx9RVCTFQquNvMNvaUlUV6kfhkIvXwbVw=";
|
||||
|
||||
postFixup = ''
|
||||
mv $out/bin/cmd $out/bin/sshed
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "ssh config editor and bookmarks manager";
|
||||
homepage = "https://github.com/trntv/sshed";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ ocfox ];
|
||||
};
|
||||
}
|
@ -12293,6 +12293,8 @@ with pkgs;
|
||||
|
||||
ssh-askpass-fullscreen = callPackage ../tools/networking/ssh-askpass-fullscreen { };
|
||||
|
||||
sshed = callPackage ../tools/networking/sshed { };
|
||||
|
||||
sshguard = callPackage ../tools/security/sshguard { };
|
||||
|
||||
sshping = callPackage ../tools/networking/sshping { };
|
||||
|
Loading…
Reference in New Issue
Block a user