python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / gotestwaf / default.nix
blob7783cbf4688f39281e20d7756424d9e1026b1cd4
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "gotestwaf";
8   version = "0.3.1";
10   src = fetchFromGitHub {
11     owner = "wallarm";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "0c627bxx0mlxhc1fsd2k3x1lm5855pl215m88la662d70559z6k8";
15   };
17   vendorSha256 = null;
19   postFixup = ''
20     # Rename binary
21     mv $out/bin/cmd $out/bin/${pname}
22   '';
24   meta = with lib; {
25     description = "Tool for API and OWASP attack simulation";
26     homepage = "https://github.com/wallarm/gotestwaf";
27     license = licenses.mit;
28     maintainers = with maintainers; [ fab ];
29   };