nixpkgs/pkgs/tools/security/shellz/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
643 B
Nix
Raw Normal View History

2021-10-04 09:11:24 +01:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "shellz";
version = "1.6.0";
src = fetchFromGitHub {
owner = "evilsocket";
repo = pname;
rev = "v${version}";
2023-09-21 15:23:40 +01:00
hash = "sha256-sUYDopSxaUPyrHev8XXobRoX6uxbdf5goJ75KYEPFNY=";
2021-10-04 09:11:24 +01:00
};
2023-09-21 15:23:40 +01:00
vendorHash = "sha256-9uQMimttsNCA//DgDMuukXUROlIz3bJfr04XfVpPLZM=";
2021-10-04 09:11:24 +01:00
ldflags = [
"-s"
"-w"
];
meta = with lib; {
description = "Utility to manage your SSH, telnet, kubernetes, winrm, web or any custom shell";
homepage = "https://github.com/evilsocket/shellz";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fab ];
};
}