biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / cloudfox / default.nix
blobebabf683ce6cafd745bdb71009bf51e5146c40e6
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "cloudfox";
9   version = "1.14.2";
11   src = fetchFromGitHub {
12     owner = "BishopFox";
13     repo = "cloudfox";
14     rev = "refs/tags/v${version}";
15     hash = "sha256-8z/j1bJT5xccSlyBnx32Dqqg6J9iazTaJgUmjN3Jc8c=";
16   };
18   vendorHash = "sha256-MQ1yoJjAWNx95Eafcarp/JNYq06xu9P05sF2QTW03NY=";
20   ldflags = [
21     "-w"
22     "-s"
23   ];
25   # Some tests are failing because of wrong filename/path
26   doCheck = false;
28   meta = with lib; {
29     description = "Tool for situational awareness of cloud penetration tests";
30     homepage = "https://github.com/BishopFox/cloudfox";
31     changelog = "https://github.com/BishopFox/cloudfox/releases/tag/v${version}";
32     license = licenses.mit;
33     maintainers = with maintainers; [ fab ];
34     mainProgram = "cloudfox";
35   };