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 18:51:37 +01:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "cloudfox";
2023-07-02 06:05:21 +01:00
version = "1.11.3";
2022-09-27 18:51:37 +01:00
src = fetchFromGitHub {
owner = "BishopFox";
repo = pname;
2023-01-14 09:11:31 +00:00
rev = "refs/tags/v${version}";
2023-07-02 06:05:21 +01:00
hash = "sha256-zkZ8Glny9eERfU4DGtTOc66O7LOk5NISqUR5muxb2m0=";
2022-09-27 18:51:37 +01:00
};
2023-06-13 21:40:47 +01:00
vendorHash = "sha256-lgccNq1cSg8rrHW0aMLcC5HrZXf8TvdFSmk6pbGXNqQ=";
2022-09-27 18:51:37 +01: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 18:51:37 +01:00
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}