nixpkgs/pkgs/by-name/cl/cloudlist/package.nix

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

33 lines
768 B
Nix
Raw Normal View History

2021-08-27 22:16:39 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "cloudlist";
version = "1.1.0";
2021-08-27 22:16:39 +00:00
src = fetchFromGitHub {
owner = "projectdiscovery";
2024-01-16 14:30:24 +00:00
repo = "cloudlist";
2023-10-03 07:55:26 +00:00
rev = "refs/tags/v${version}";
hash = "sha256-HV4qhQgeLKwkyrRFzRQibqjWRyjLBtoWVdliJ+iyyBc=";
2021-08-27 22:16:39 +00:00
};
vendorHash = "sha256-6J9AWONLP/FvR0dXt5Zx4n+kTpmnxF79HcWVFp9OZ0g=";
2021-08-27 22:16:39 +00:00
2024-01-16 14:30:24 +00:00
ldflags = [
"-w"
"-s"
];
2021-08-27 22:16:39 +00:00
meta = with lib; {
description = "Tool for listing assets from multiple cloud providers";
mainProgram = "cloudlist";
2021-08-27 22:16:39 +00:00
homepage = "https://github.com/projectdiscovery/cloudlist";
2023-10-03 07:55:26 +00:00
changelog = "https://github.com/projectdiscovery/cloudlist/releases/tag/v${version}";
2021-08-27 22:16:39 +00:00
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}