depot/third_party/nixpkgs/pkgs/tools/security/gotestwaf/default.nix
Default email 87f9c27ba9 Project import generated by Copybara.
GitOrigin-RevId: fe2ecaf706a5907b5e54d979fbde4924d84b65fc
2023-04-12 14:48:02 +02:00

45 lines
925 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
, gotestwaf
, testers
}:
buildGoModule rec {
pname = "gotestwaf";
version = "0.4.0";
src = fetchFromGitHub {
owner = "wallarm";
repo = pname;
rev = "v${version}";
hash = "sha256-waYX7DMyLW0eSzpFRyiCJQdYLFGaAKSlvGYrdcRfCl4=";
};
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";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}