nixpkgs/pkgs/tools/admin/aws-rotate-key/default.nix

26 lines
634 B
Nix
Raw Normal View History

2018-07-11 16:40:25 -04:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "aws-rotate-key-${version}";
2018-11-18 09:39:01 -05:00
version = "1.0.4";
2018-07-11 16:40:25 -04:00
goPackagePath = "github.com/Fullscreen/aws-rotate-key";
src = fetchFromGitHub {
rev = "v${version}";
owner = "Fullscreen";
repo = "aws-rotate-key";
2018-11-18 09:39:01 -05:00
sha256 = "14bcs434646qdywws55r1a1v8ncwz8n0yljaa8zb5796pv4445wf";
2018-07-11 16:40:25 -04:00
};
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;
};
}