biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / cloud-nuke / default.nix
blobf5d6c1caa7bd57cd7d67beb7ee5226fccc2eb7af
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 , makeBinaryWrapper
5 }:
7 buildGoModule rec {
8   pname = "cloud-nuke";
9   version = "0.35.0";
11   src = fetchFromGitHub {
12     owner = "gruntwork-io";
13     repo = pname;
14     rev = "refs/tags/v${version}";
15     hash = "sha256-mSkQW4fSpylbOS8x/o/578NV+SU4ao/yqB81Ifb7LFQ=";
16   };
18   vendorHash = "sha256-Fmfr9feTibAjiZaakJalGTS7X2RhGz6engMNhy48Zus=";
20   nativeBuildInputs = [
21     makeBinaryWrapper
22   ];
24   ldflags = [
25     "-s"
26     "-w"
27     "-X=main.VERSION=${version}"
28   ];
30   doCheck = false;
32   postInstall = ''
33     wrapProgram $out/bin/cloud-nuke --set-default DISABLE_TELEMETRY true
34   '';
36   meta = with lib; {
37     homepage = "https://github.com/gruntwork-io/cloud-nuke";
38     description = "A tool for cleaning up your cloud accounts by nuking (deleting) all resources within it";
39     mainProgram = "cloud-nuke";
40     changelog = "https://github.com/gruntwork-io/cloud-nuke/releases/tag/v${version}";
41     license = licenses.mit;
42     maintainers = with maintainers; [ marsam ];
43   };