Skip to content

Commit

Permalink
Merge pull request #43384 from mbode/aws-rotate-key
Browse files Browse the repository at this point in the history
aws-rotate-key: init at 1.0.0
  • Loading branch information
nlewo committed Jul 17, 2018
2 parents b412cac + 7741be7 commit bac995c
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pkgs/tools/admin/aws-rotate-key/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
name = "aws-rotate-key-${version}";
version = "1.0.0";

goPackagePath = "github.com/Fullscreen/aws-rotate-key";

src = fetchFromGitHub {
rev = "v${version}";
owner = "Fullscreen";
repo = "aws-rotate-key";
sha256 = "13q7rns65cj8b4i0s75dbswijpra9z74b462zribwfjdm29by5k1";
};

goDeps = ./deps.nix;

meta = with stdenv.lib; {
description = "Easily rotate your AWS key";
homepage = https://github.com/Fullscreen/aws-rotate-key;
license = licenses.mit;
maintainers = [maintainers.mbode];
platforms = platforms.unix;
};
}
29 changes: 29 additions & 0 deletions pkgs/tools/admin/aws-rotate-key/deps.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -555,6 +555,8 @@ with pkgs;

awslogs = callPackage ../tools/admin/awslogs { };

aws-rotate-key = callPackage ../tools/admin/aws-rotate-key { };

aws_shell = pythonPackages.callPackage ../tools/admin/aws_shell { };

aws-sam-cli = callPackage ../development/tools/aws-sam-cli { };
Expand Down

0 comments on commit bac995c

Please sign in to comment.