nixpkgs/pkgs/tools/security/cloudlist/default.nix

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

26 lines
595 B
Nix
Raw Normal View History

2021-08-27 22:16:39 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "cloudlist";
2023-04-18 04:37:14 +00:00
version = "1.0.3";
2021-08-27 22:16:39 +00:00
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = pname;
rev = "v${version}";
2023-04-18 04:37:14 +00:00
sha256 = "sha256-PWOC+Y+tCr5LqWJpSVoIeOquO2vMb06KW25pBEER3Ys=";
2021-08-27 22:16:39 +00:00
};
2023-04-18 04:37:14 +00:00
vendorHash = "sha256-FesvXH29thy6B9VXZnuvllJ+9VQR4i6q1JzrULaU82s=";
2021-08-27 22:16:39 +00:00
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 ];
};
}