nixpkgs/pkgs/tools/security/gotestwaf/default.nix
IndeedNotJames dd2afe6812
gotestwaf: fix version self-reporting
Note: Upstream uses `git describe --tags`, so we have to prefix the version string with the letter `v` just like we do in `src.rev`

See 6905eb273c/Dockerfile (L50)
2023-04-03 21:11:54 +02:00

46 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 ];
};
}