mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 12:23:02 +00:00
cloudfox: init at 1.7.1
This commit is contained in:
parent
4dd0352397
commit
f57b8bd640
28
pkgs/tools/security/cloudfox/default.nix
Normal file
28
pkgs/tools/security/cloudfox/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "cloudfox";
|
||||
version = "1.7.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "BishopFox";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-JwSXm75CC1GBbQ7kZJXyDXf2997owRaGcB2m7q+BrEs=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-KrJR5YZxP6psHphY0BhYFu14PaDi5k1ngFfYPSzOYK4=";
|
||||
|
||||
# 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 ];
|
||||
};
|
||||
}
|
@ -2362,6 +2362,8 @@ with pkgs;
|
||||
|
||||
cloud-sql-proxy = callPackage ../tools/misc/cloud-sql-proxy { };
|
||||
|
||||
cloudfox = callPackage ../tools/security/cloudfox { };
|
||||
|
||||
cloudsmith-cli = callPackage ../development/tools/cloudsmith-cli { };
|
||||
|
||||
codeql = callPackage ../development/tools/analysis/codeql { };
|
||||
|
Loading…
Reference in New Issue
Block a user