Skip to content

Commit b5b6656

Browse files
committedJan 11, 2018
aws-vault: init at 4.1.0
1 parent db8a429 commit b5b6656

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed
 
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{ buildGoPackage, lib, fetchFromGitHub }:
2+
buildGoPackage rec {
3+
name = "${pname}-${version}";
4+
pname = "aws-vault";
5+
version = "4.1.0";
6+
7+
goPackagePath = "github.com/99designs/${pname}";
8+
9+
src = fetchFromGitHub {
10+
owner = "99designs";
11+
repo = pname;
12+
rev = "v${version}";
13+
sha256 = "04cdynqmkbs7bkl2aay4sjxq49i90fg048lw0ssw1fpwldbvnl6j";
14+
};
15+
16+
meta = with lib; {
17+
description = "A vault for securely storing and accessing AWS credentials in development environments"
18+
homepage = "https://github.com/99designs/aws-vault";
19+
license = licenses.mit;
20+
maintainers = with maintainers; [ zimbatm ];
21+
}
22+
}

‎pkgs/top-level/all-packages.nix

+2
Original file line numberDiff line numberDiff line change
@@ -541,6 +541,8 @@ with pkgs;
541541

542542
aws_shell = pythonPackages.aws_shell;
543543

544+
aws-vault = callPackage ../tools/admin/aws-vault { };
545+
544546
azure-cli = nodePackages.azure-cli;
545547

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

0 commit comments

Comments
 (0)