1{ lib
2, buildGoModule
3, fetchFromGitHub
4}:
5
6buildGoModule rec {
7 pname = "cloudfox";
8 version = "1.12.2";
9
10 src = fetchFromGitHub {
11 owner = "BishopFox";
12 repo = pname;
13 rev = "refs/tags/v${version}";
14 hash = "sha256-r9YIJ+PRUA1stKTL39+/T+m1WMkocpjfzG8Y9knnFU4=";
15 };
16
17 vendorHash = "sha256-nSisRurpareGI4EHENayMhsYOKL1hE1wVw2Ueiqii4U=";
18
19 # Some tests are failing because of wrong filename/path
20 doCheck = false;
21
22 meta = with lib; {
23 description = "Tool for situational awareness of cloud penetration tests";
24 homepage = "https://github.com/BishopFox/cloudfox";
25 changelog = "https://github.com/BishopFox/cloudfox/releases/tag/v${version}";
26 license = licenses.mit;
27 maintainers = with maintainers; [ fab ];
28 };
29}