nixpkgs/pkgs/tools/security/cloudfox/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
752 B
Nix
Raw Normal View History

2022-09-27 17:51:37 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "cloudfox";
2024-01-26 12:10:39 +00:00
version = "1.13.1";
2022-09-27 17:51:37 +00:00
src = fetchFromGitHub {
owner = "BishopFox";
repo = pname;
2023-01-14 09:11:31 +00:00
rev = "refs/tags/v${version}";
2024-01-26 12:10:39 +00:00
hash = "sha256-zP6jrueL3CXl6+fCmx4u0FzFy8mj6WkmECPHRZyqX8A=";
2022-09-27 17:51:37 +00:00
};
2024-01-26 12:10:39 +00:00
vendorHash = "sha256-qPIMmyKTmZEmxlLLftRMnBXvo22WFROYlCAAsAb7jDg=";
2022-09-27 17:51:37 +00:00
# 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";
2023-01-14 09:11:31 +00:00
changelog = "https://github.com/BishopFox/cloudfox/releases/tag/v${version}";
2022-09-27 17:51:37 +00:00
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}