aws-rotate-key: init at 1.0.0

This commit is contained in:
Maximilian Bode
2018-07-16 16:21:38 +02:00
parent 7c37665831
commit 7741be72e7
3 changed files with 56 additions and 0 deletions
@@ -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;
};
}