depot/third_party/nixpkgs/pkgs/development/tools/cloud-nuke/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

44 lines
1,016 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
, makeBinaryWrapper
}:
buildGoModule rec {
pname = "cloud-nuke";
version = "0.35.0";
src = fetchFromGitHub {
owner = "gruntwork-io";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-mSkQW4fSpylbOS8x/o/578NV+SU4ao/yqB81Ifb7LFQ=";
};
vendorHash = "sha256-Fmfr9feTibAjiZaakJalGTS7X2RhGz6engMNhy48Zus=";
nativeBuildInputs = [
makeBinaryWrapper
];
ldflags = [
"-s"
"-w"
"-X=main.VERSION=${version}"
];
doCheck = false;
postInstall = ''
wrapProgram $out/bin/cloud-nuke --set-default DISABLE_TELEMETRY true
'';
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";
mainProgram = "cloud-nuke";
changelog = "https://github.com/gruntwork-io/cloud-nuke/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ marsam ];
};
}