mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
aws-vault: init at 4.1.0
This commit is contained in:
parent
db8a42963b
commit
b5b6656c87
2 changed files with 24 additions and 0 deletions
22
pkgs/tools/admin/aws-vault/default.nix
Normal file
22
pkgs/tools/admin/aws-vault/default.nix
Normal file
|
@ -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"
|
||||
homepage = "https://github.com/99designs/aws-vault";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ zimbatm ];
|
||||
}
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue