File tree 2 files changed +24
-0
lines changed
2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change @@ -541,6 +541,8 @@ with pkgs;
541
541
542
542
aws_shell = pythonPackages.aws_shell;
543
543
544
+ aws-vault = callPackage ../tools/admin/aws-vault { };
545
+
544
546
azure-cli = nodePackages.azure-cli;
545
547
546
548
azure-vhd-utils = callPackage ../tools/misc/azure-vhd-utils { };
You can’t perform that action at this time.
0 commit comments