mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
50 lines
1.1 KiB
Nix
50 lines
1.1 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "aws-nuke";
|
|
version = "2.25.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rebuy-de";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-Yc9GXdcSKPvwddh+QU2/pBC0XIqA53wpd0VNKOqppbU=";
|
|
};
|
|
|
|
vendorHash = "sha256-FZ92JoyPYysYhl7iQZ8X32BDyNKL1UbOgq7EhHyqb5A=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
overrideModAttrs = _: {
|
|
preBuild = ''
|
|
go generate ./...
|
|
'';
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
subPackages = [ "." ];
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd aws-nuke \
|
|
--bash <($out/bin/aws-nuke completion bash) \
|
|
--fish <($out/bin/aws-nuke completion fish) \
|
|
--zsh <($out/bin/aws-nuke completion zsh)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Nuke a whole AWS account and delete all its resources";
|
|
homepage = "https://github.com/rebuy-de/aws-nuke";
|
|
changelog = "https://github.com/rebuy-de/aws-nuke/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ grahamc ];
|
|
mainProgram = "aws-nuke";
|
|
};
|
|
}
|