60f07311b9
GitOrigin-RevId: f8e2ebd66d097614d51a56a755450d4ae1632df1
48 lines
1 KiB
Nix
48 lines
1 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, gotestwaf
|
|
, testers
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "gotestwaf";
|
|
version = "0.4.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wallarm";
|
|
repo = "gotestwaf";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-xvlzSBvOM09b/m4gI1sbIpIlFJnXQL0G4xet/AL3Yxo=";
|
|
};
|
|
|
|
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";
|
|
homepage = "https://github.com/wallarm/gotestwaf";
|
|
changelog = "https://github.com/wallarm/gotestwaf/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|