mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 17:53:37 +00:00
47 lines
1016 B
Nix
47 lines
1016 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, gotestwaf
|
|
, testers
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "gotestwaf";
|
|
version = "0.4.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wallarm";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-Ypcn6rsimID5B+xrdetxQTopg+xvkNILJFGKf2dbO8k=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
# Some tests require networking as of v0.4.0
|
|
doCheck = false;
|
|
|
|
ldflags = [
|
|
"-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 ];
|
|
};
|
|
}
|