depot/third_party/nixpkgs/pkgs/tools/security/gotestwaf/default.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

50 lines
1.1 KiB
Nix

{
lib,
buildGoModule,
fetchFromGitHub,
gotestwaf,
testers,
}:
buildGoModule rec {
pname = "gotestwaf";
version = "0.4.19";
src = fetchFromGitHub {
owner = "wallarm";
repo = "gotestwaf";
rev = "refs/tags/v${version}";
hash = "sha256-ax2HPhdaqawpFe2AZg3SVsEJLG7gEgL7632iRADpaa8=";
};
vendorHash = null;
# Some tests require networking as of v0.4.0
doCheck = false;
ldflags = [
"-w"
"-s"
"-X=github.com/wallarm/gotestwaf/internal/version.Version=v${version}"
];
postFixup = ''
# Rename binary
mv $out/bin/cmd $out/bin/${pname}
'';
passthru.tests.version = testers.testVersion {
command = "gotestwaf --version";
package = gotestwaf;
version = "v${version}";
};
meta = with lib; {
description = "Tool for API and OWASP attack simulation";
mainProgram = "gotestwaf";
homepage = "https://github.com/wallarm/gotestwaf";
changelog = "https://github.com/wallarm/gotestwaf/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}