python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / cloud-nuke / default.nix
blob45246f7dfea489ae7c79f9b84c7e7f8a98c1cbcf
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "cloud-nuke";
5   version = "0.21.0";
7   src = fetchFromGitHub {
8     owner = "gruntwork-io";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-DcR5pofMcV2Y5qVA2h3I5h/1qS25+deVAUQWIMLu/KI=";
12   };
14   vendorSha256 = "sha256-GRHyoKv05JRZiY0g3Xd11liDYPcA6rfE8vorZRCV1wI=";
16   ldflags = [ "-s" "-w" "-X main.VERSION=${version}" ];
18   doCheck = false;
20   meta = with lib; {
21     homepage = "https://github.com/gruntwork-io/cloud-nuke";
22     description = "A tool for cleaning up your cloud accounts by nuking (deleting) all resources within it";
23     license = licenses.mit;
24     maintainers = [ maintainers.marsam ];
25   };