cloudrecon: init at 1.0.3
Tool to find assets from certificates https://github.com/g0ldencybersec/CloudRecon
This commit is contained in:
parent
f36cf57e73
commit
4917ed47a2
32
pkgs/by-name/cl/cloudrecon/package.nix
Normal file
32
pkgs/by-name/cl/cloudrecon/package.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user