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

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

32 lines
737 B
Nix
Raw Normal View History

2021-08-28 00:16:39 +02:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "cloudlist";
2024-02-21 12:45:46 +01:00
version = "1.0.7";
2021-08-28 00:16:39 +02:00
src = fetchFromGitHub {
owner = "projectdiscovery";
2024-01-16 15:30:24 +01:00
repo = "cloudlist";
2023-10-03 09:55:26 +02:00
rev = "refs/tags/v${version}";
2024-02-21 12:45:46 +01:00
hash = "sha256-F1oiatNP4tSRWI25r1uoiLT9Et+PyqU0p2HVICMBUNA=";
2021-08-28 00:16:39 +02:00
};
2024-02-21 12:45:46 +01:00
vendorHash = "sha256-3QS9YYypqEJhibfBFxFq1gxTVpTWBy35tXcO9+DBehY=";
2021-08-28 00:16:39 +02:00
2024-01-16 15:30:24 +01:00
ldflags = [
"-w"
"-s"
];
2021-08-28 00:16:39 +02:00
meta = with lib; {
description = "Tool for listing assets from multiple cloud providers";
homepage = "https://github.com/projectdiscovery/cloudlist";
2023-10-03 09:55:26 +02:00
changelog = "https://github.com/projectdiscovery/cloudlist/releases/tag/v${version}";
2021-08-28 00:16:39 +02:00
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}