2025-06-03 18:27:59 +05:30

37 lines
818 B
Nix

{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "cloudfox";
version = "1.15.0";
src = fetchFromGitHub {
owner = "BishopFox";
repo = "cloudfox";
tag = "v${version}";
hash = "sha256-YLZSrBAEf0SXECAdnF2CQAlEd15DJ1Iv+x+RebM5tw4=";
};
vendorHash = "sha256-MQ1yoJjAWNx95Eafcarp/JNYq06xu9P05sF2QTW03NY=";
ldflags = [
"-w"
"-s"
];
# Some tests are failing because of wrong filename/path
doCheck = false;
meta = {
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 = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "cloudfox";
};
}