depot/third_party/nixpkgs/pkgs/tools/networking/sshed/default.nix
Default email c7e6337bd0 Project import generated by Copybara.
GitOrigin-RevId: 08e4dc3a907a6dfec8bb3bbf1540d8abbffea22b
2023-04-29 12:46:19 -04:00

29 lines
606 B
Nix

{ 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 ];
};
}