mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 02:03:01 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
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";
|
|
};
|
|
}
|