Skip to content

Commit

Permalink
aws-vault: init at 4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zimbatm committed Jan 11, 2018
1 parent db8a429 commit b5b6656
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pkgs/tools/admin/aws-vault/default.nix
@@ -0,0 +1,22 @@
{ buildGoPackage, lib, fetchFromGitHub }:
buildGoPackage rec {
name = "${pname}-${version}";
pname = "aws-vault";
version = "4.1.0";

goPackagePath = "github.com/99designs/${pname}";

src = fetchFromGitHub {
owner = "99designs";
repo = pname;
rev = "v${version}";
sha256 = "04cdynqmkbs7bkl2aay4sjxq49i90fg048lw0ssw1fpwldbvnl6j";
};

meta = with lib; {
description = "A vault for securely storing and accessing AWS credentials in development environments"

This comment has been minimized.

Copy link
@mdorman

mdorman Jan 11, 2018

Contributor

So this was compile-tested, right?

homepage = "https://github.com/99designs/aws-vault";
license = licenses.mit;
maintainers = with maintainers; [ zimbatm ];
}
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -541,6 +541,8 @@ with pkgs;

aws_shell = pythonPackages.aws_shell;

aws-vault = callPackage ../tools/admin/aws-vault { };

azure-cli = nodePackages.azure-cli;

azure-vhd-utils = callPackage ../tools/misc/azure-vhd-utils { };
Expand Down

2 comments on commit b5b6656

@adisbladis
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This commit broke evaluation. Fixed in 8c1e47a

@zimbatm
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, it was compile-tested, I should have re-tried after adding the metadata later on.

Please sign in to comment.