gotestwaf: init at 0.3.1
This commit is contained in:
parent
e4f82b3722
commit
12571055cf
30
pkgs/tools/security/gotestwaf/default.nix
Normal file
30
pkgs/tools/security/gotestwaf/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "gotestwaf";
|
||||
version = "0.3.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "wallarm";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0c627bxx0mlxhc1fsd2k3x1lm5855pl215m88la662d70559z6k8";
|
||||
};
|
||||
|
||||
vendorSha256 = null;
|
||||
|
||||
postFixup = ''
|
||||
# Rename binary
|
||||
mv $out/bin/cmd $out/bin/${pname}
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tool for API and OWASP attack simulation";
|
||||
homepage = "https://github.com/wallarm/gotestwaf";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -31528,6 +31528,8 @@ with pkgs;
|
||||
|
||||
gobuster = callPackage ../tools/security/gobuster { };
|
||||
|
||||
gotestwaf = callPackage ../tools/security/gotestwaf { };
|
||||
|
||||
guetzli = callPackage ../applications/graphics/guetzli { };
|
||||
|
||||
gummi = callPackage ../applications/misc/gummi { };
|
||||
|
Loading…
Reference in New Issue
Block a user