nixpkgs/pkgs/by-name/cl/cloudbrute/package.nix

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

32 lines
802 B
Nix
Raw Normal View History

2021-01-09 17:12:41 +00:00
{ buildGoModule
, fetchFromGitHub
, lib
2021-01-09 17:12:41 +00:00
}:
buildGoModule rec {
pname = "cloudbrute";
version = "1.0.7";
src = fetchFromGitHub {
owner = "0xsha";
repo = "CloudBrute";
rev = "v${version}";
2023-09-21 14:23:40 +00:00
hash = "sha256-L233VdQolSPDPDXQALLvF5seb3peHiLRiZuj2RqdaRU=";
2021-01-09 17:12:41 +00:00
};
2023-09-21 14:23:40 +00:00
vendorHash = "sha256-SRk5kEUVmY3IJSB/XwchqWGnaXLQUoisx6KlVzMHdjg=";
2021-01-09 17:12:41 +00:00
meta = with lib; {
2021-01-09 17:12:41 +00:00
description = "Cloud enumeration tool";
mainProgram = "cloudbrute";
2021-01-09 17:12:41 +00:00
longDescription = ''
A tool to find a company (target) infrastructure, files, and apps on
the top cloud providers (Amazon, Google, Microsoft, DigitalOcean,
Alibaba, Vultr, Linode).
'';
homepage = "https://github.com/0xsha/CloudBrute";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}