nixpkgs/pkgs/development/tools/cloud-nuke/default.nix

27 lines
713 B
Nix
Raw Normal View History

2020-11-14 05:20:00 +01:00
{ lib, buildGoModule, fetchFromGitHub }:
2019-06-12 23:20:00 +02:00
2020-11-14 05:20:00 +01:00
buildGoModule rec {
2019-06-12 23:20:00 +02:00
pname = "cloud-nuke";
2020-11-14 05:20:00 +01:00
version = "0.1.23";
2019-06-12 23:20:00 +02:00
src = fetchFromGitHub {
owner = "gruntwork-io";
repo = pname;
rev = "v${version}";
2020-11-14 05:20:00 +01:00
sha256 = "0qqvjw6lqdrfg1mjfxljslcv9714cpxcnkf65wkf46r5g8fwzr1f";
2019-06-12 23:20:00 +02:00
};
2020-11-14 05:20:00 +01:00
vendorSha256 = "0bw0xcbyns94vy1abr962876zr7aq6q9qq7y9vr1yqw4hqmi3ndi";
2019-06-12 23:20:00 +02:00
2020-11-14 05:20:00 +01:00
buildFlagsArray = [ "-ldflags=-s -w -X main.VERSION=${version}" ];
doCheck = false;
2019-06-12 23:20:00 +02:00
meta = with lib; {
homepage = "https://github.com/gruntwork-io/cloud-nuke";
description = "A tool for cleaning up your cloud accounts by nuking (deleting) all resources within it";
license = licenses.mit;
maintainers = [ maintainers.marsam ];
};
}