nixpkgs/pkgs/tools/security/gotestwaf/default.nix

50 lines
1.0 KiB
Nix

{ lib
, buildGoModule
, fetchFromGitHub
, gotestwaf
, testers
}:
buildGoModule rec {
pname = "gotestwaf";
version = "0.4.16";
src = fetchFromGitHub {
owner = "wallarm";
repo = "gotestwaf";
rev = "refs/tags/v${version}";
hash = "sha256-fMSXnA8ZuyfOQINkWiYwX7NSffsHbdlfDcpfo/hahMY=";
};
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 ];
};
}