about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/gotestwaf/default.nix
blob: 7783cbf4688f39281e20d7756424d9e1026b1cd4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "gotestwaf";
  version = "0.3.1";

  src = fetchFromGitHub {
    owner = "wallarm";
    repo = pname;
    rev = "v${version}";
    sha256 = "0c627bxx0mlxhc1fsd2k3x1lm5855pl215m88la662d70559z6k8";
  };

  vendorSha256 = null;

  postFixup = ''
    # Rename binary
    mv $out/bin/cmd $out/bin/${pname}
  '';

  meta = with lib; {
    description = "Tool for API and OWASP attack simulation";
    homepage = "https://github.com/wallarm/gotestwaf";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}