3
0
Fork 0
forked from mirrors/nixpkgs

iamy: init at 2.1.1

Add iamy package - maintains aws iam in yaml format
This commit is contained in:
Suvash Thapaliya 2018-04-13 12:51:31 +02:00
parent 0cb8413b02
commit 7e324b857b
No known key found for this signature in database
GPG key ID: BB8D4E7B4156AAA6
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "iamy-${version}";
version = "2.1.1";
goPackagePath = "github.com/99designs/iamy";
src = fetchFromGitHub {
owner = "99designs";
repo = "iamy";
rev = "v${version}";
sha256 = "0b55hxcvgil8rl6zh2kyndfi7s5nzclawjb0sby14wpys3v08bjf";
};
meta = with stdenv.lib; {
description = "A cli tool for importing and exporting AWS IAM configuration to YAML files";
homepage = https://github.com/99designs/iamy;
license = licenses.mit;
maintainers = with maintainers; [ suvash ];
};
}

View file

@ -563,6 +563,8 @@ with pkgs;
aws-vault = callPackage ../tools/admin/aws-vault { };
iamy = callPackage ../tools/admin/iamy { };
azure-cli = nodePackages.azure-cli;
azure-vhd-utils = callPackage ../tools/misc/azure-vhd-utils { };