Merge pull request #135968 from fabaff/cloudlist

cloudlist: init at 0.0.1
This commit is contained in:
Sandro 2021-08-28 01:02:26 +02:00 committed by GitHub
commit bbda38773a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;
};