python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / cloudbrute / default.nix
blob84a59ec495f2eb86908f554e4f7256f026ce182b
1 { buildGoModule
2 , fetchFromGitHub
3 , lib
4 }:
6 buildGoModule rec {
7   pname = "cloudbrute";
8   version = "1.0.7";
10   src = fetchFromGitHub {
11     owner = "0xsha";
12     repo = "CloudBrute";
13     rev = "v${version}";
14     sha256 = "05b9klddk8wvi78j47jyg9pix6qpxyr01l1m7k1j7598siazfv9g";
15   };
17   vendorSha256 = "0f3n0wrmg9d2qyn8hlnhf9lsfqd9443myzr04p48v68m8n83j6a9";
19   meta = with lib; {
20     description = "Cloud enumeration tool";
21     longDescription = ''
22       A tool to find a company (target) infrastructure, files, and apps on
23       the top cloud providers (Amazon, Google, Microsoft, DigitalOcean,
24       Alibaba, Vultr, Linode).
25     '';
26     homepage = "https://github.com/0xsha/CloudBrute";
27     license = with licenses; [ mit ];
28     maintainers = with maintainers; [ fab ];
29   };