nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 20.03 24 lines 631 B view raw
1{ lib, buildGoPackage, fetchFromGitHub }: 2 3buildGoPackage rec { 4 pname = "cloud-nuke"; 5 version = "0.1.7"; 6 7 src = fetchFromGitHub { 8 owner = "gruntwork-io"; 9 repo = pname; 10 rev = "v${version}"; 11 sha256 = "054z6v13x55x9l5xnixxxszj8k2wa09b5ld2wq4gm4hc273s2m4k"; 12 }; 13 14 goPackagePath = "github.com/gruntwork-io/cloud-nuke"; 15 16 goDeps = ./deps.nix; 17 18 meta = with lib; { 19 homepage = "https://github.com/gruntwork-io/cloud-nuke"; 20 description = "A tool for cleaning up your cloud accounts by nuking (deleting) all resources within it"; 21 license = licenses.mit; 22 maintainers = [ maintainers.marsam ]; 23 }; 24}