mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-03 19:43:30 +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.
31 lines
825 B
Nix
31 lines
825 B
Nix
{ lib, buildGoModule, fetchFromGitHub, testers, aws-rotate-key }:
|
|
|
|
buildGoModule rec {
|
|
pname = "aws-rotate-key";
|
|
version = "1.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Fullscreen";
|
|
repo = "aws-rotate-key";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-fYpgHHOw0k/8WLGhq+uVOvoF4Wff6wzTXuN8r4D+TmU=";
|
|
};
|
|
|
|
vendorHash = "sha256-gXtTd7lU9m9rO1w7Fx8o/s45j63h6GtUZrjOzFI4Q/o=";
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = aws-rotate-key;
|
|
command = "AWS_SHARED_CREDENTIALS_FILE=/dev/null aws-rotate-key --version";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Easily rotate your AWS key";
|
|
homepage = "https://github.com/Fullscreen/aws-rotate-key";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.mbode ];
|
|
mainProgram = "aws-rotate-key";
|
|
};
|
|
}
|