29 lines
751 B
Nix
29 lines
751 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "cloudfox";
|
|
version = "1.9.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "BishopFox";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-HLBW7a2sjA/bs8VJkwQNqM6YPEfa1onMoK89G5Fsb8s=";
|
|
};
|
|
|
|
vendorHash = "sha256-xMHlooXuLECQi7co2/WvY0TIoV0S5OgcBklICCFk3ls=";
|
|
|
|
# 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";
|
|
changelog = "https://github.com/BishopFox/cloudfox/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|