biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / shellz / default.nix
blobe7d44bd21926f32ffe24aa30e72e5a4b6176978c
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "shellz";
8   version = "1.6.0";
10   src = fetchFromGitHub {
11     owner = "evilsocket";
12     repo = pname;
13     rev = "v${version}";
14     hash = "sha256-sUYDopSxaUPyrHev8XXobRoX6uxbdf5goJ75KYEPFNY=";
15   };
17   vendorHash = "sha256-9uQMimttsNCA//DgDMuukXUROlIz3bJfr04XfVpPLZM=";
19   ldflags = [
20     "-s"
21     "-w"
22   ];
24   meta = with lib; {
25     description = "Utility to manage your SSH, telnet, kubernetes, winrm, web or any custom shell";
26     homepage = "https://github.com/evilsocket/shellz";
27     license = licenses.gpl3Only;
28     maintainers = with maintainers; [ fab ];
29     mainProgram = "shellz";
30   };