Unverified Commit 5992626b authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #233246 from fabaff/girsh

girsh: init at 0.41
parents 6a603868 4d26725a
Loading
Loading
Loading
Loading
+35 −0
Original line number Diff line number Diff line
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "girsh";
  version = "0.41";

  src = fetchFromGitHub {
    owner = "nodauf";
    repo = "Girsh";
    rev = "refs/tags/v${version}";
    hash = "sha256-MgzIBag0Exoh0TXW/AD0lbSOj7PVkMeVYQ8v5jdCgAs=";
  };

  vendorHash = "sha256-8NPFohguMX/X1khEPF+noLBNe/MUoPpXS2PN6SiotL8=";

  ldflags = [
    "-s"
    "-w"
  ];

  postInstall = ''
    mv $out/bin/src $out/bin/$pname
  '';

  meta = with lib; {
    description = "Automatically spawn a reverse shell fully interactive for Linux or Windows victim";
    homepage = "https://github.com/nodauf/Girsh";
    changelog = "https://github.com/nodauf/Girsh/releases/tag/v${version}";
    license = licenses.gpl2Only;
    maintainers = with maintainers; [ fab ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -5027,6 +5027,8 @@ with pkgs;
  gir-rs = callPackage ../development/tools/gir { };
  girsh = callPackage ../tools/networking/girsh { };
  gist = callPackage ../tools/text/gist { };
  gitjacker = callPackage ../tools/security/gitjacker { };