gtfocli: init at 0.0.4
GTFO Command Line Interface for search binaries commands to bypass local security restrictions https://github.com/cmd-tools/gtfocli
This commit is contained in:
parent
ede6e2b78e
commit
7de6e523c1
1 changed files with 33 additions and 0 deletions
33
pkgs/by-name/gt/gtfocli/package.nix
Normal file
33
pkgs/by-name/gt/gtfocli/package.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "gtfocli";
|
||||
version = "0.0.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cmd-tools";
|
||||
repo = "gtfocli";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-fSk/OyeUffYZOkHXM1m/a9traDxdllYBieMEfsv910Q=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-yhN2Ve4mBw1HoC3zXYz+M8+2CimLGduG9lGTXi+rPNw=";
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "GTFO Command Line Interface for search binaries commands to bypass local security restrictions";
|
||||
homepage = "https://github.com/cmd-tools/gtfocli";
|
||||
changelog = "https://github.com/cmd-tools/gtfocli/releases/tag/${version}";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
mainProgram = "gtfocli";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue