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

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

29 lines
661 B
Nix
Raw Normal View History

2022-09-27 19:51:37 +02:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "cloudfox";
2022-10-20 09:13:49 +02:00
version = "1.8.1";
2022-09-27 19:51:37 +02:00
src = fetchFromGitHub {
owner = "BishopFox";
repo = pname;
rev = "v${version}";
2022-10-20 09:13:49 +02:00
hash = "sha256-eWo5l3yFEW7ztyYvN1zGGOhCzkJW7rUqaQ+2BPB7BWY=";
2022-09-27 19:51:37 +02:00
};
2022-10-20 09:13:49 +02:00
vendorSha256 = "sha256-ATHQUvUBDZh06LtWLAA1UyHU1c4LME0z/FsygQQJQy8=";
2022-09-27 19:51:37 +02: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";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}