cloudlist: init at 0.0.1

This commit is contained in:
Fabian Affolter 2021-08-28 00:16:39 +02:00
parent b631286150
commit f34c35c6dc
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "cloudlist";
version = "0.0.1";
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = pname;
rev = "v${version}";
sha256 = "1ad77nnhfx2l00nz9r89xfipwkvxp74y1xirjvkfxys4sf1yqag7";
};
vendorSha256 = "0yr9w2k6lyxnwbxh9mp1lri9z29wl9rgfvq8mjjdlqvcqhbw7l7l";
meta = with lib; {
description = "Tool for listing assets from multiple cloud providers";
homepage = "https://github.com/projectdiscovery/cloudlist";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -3991,6 +3991,8 @@ with pkgs;
cloud-utils = callPackage ../tools/misc/cloud-utils { };
cloudlist = callPackage ../tools/security/cloudlist { };
cobalt = callPackage ../applications/misc/cobalt {
inherit (darwin.apple_sdk.frameworks) CoreServices;
};