619398f19c
Diff: https://github.com/BishopFox/cloudfox/compare/refs/tags/v1.12.0...v1.12.2 Changelog: https://github.com/BishopFox/cloudfox/releases/tag/v1.12.2
29 lines
752 B
Nix
29 lines
752 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "cloudfox";
|
|
version = "1.12.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "BishopFox";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-r9YIJ+PRUA1stKTL39+/T+m1WMkocpjfzG8Y9knnFU4=";
|
|
};
|
|
|
|
vendorHash = "sha256-nSisRurpareGI4EHENayMhsYOKL1hE1wVw2Ueiqii4U=";
|
|
|
|
# Some tests are failing because of wrong filename/path
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Tool for situational awareness of cloud penetration tests";
|
|
homepage = "https://github.com/BishopFox/cloudfox";
|
|
changelog = "https://github.com/BishopFox/cloudfox/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|