Merge pull request #284581 from fabaff/cloudrecon

cloudrecon: init at 1.0.3
This commit is contained in:
Fabian Affolter 2024-03-05 09:10:23 +01:00 committed by GitHub
commit c44c76a75d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,32 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "cloudrecon";
version = "1.0.3";
src = fetchFromGitHub {
owner = "g0ldencybersec";
repo = "CloudRecon";
rev = "refs/tags/v${version}";
hash = "sha256-I/pdipBC+DndAGS6L4i3YoMVBTlaXNzXopD+ZxyyRmY=";
};
vendorHash = "sha256-hLEmRq7Iw0hHEAla0Ehwk1EfmpBv6ddBuYtq12XdhVc=";
ldflags = [
"-s"
"-w"
];
meta = with lib; {
description = "Tool to find assets from certificates";
homepage = "https://github.com/g0ldencybersec/CloudRecon";
changelog = "https://github.com/g0ldencybersec/CloudRecon/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
mainProgram = "cloudrecon";
};
}