chamber: init at 2.8.2
This commit is contained in:
parent
76db685f59
commit
21ec91713d
28
pkgs/tools/admin/chamber/default.nix
Normal file
28
pkgs/tools/admin/chamber/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ buildGoModule, lib, fetchFromGitHub }:
|
||||
buildGoModule rec {
|
||||
pname = "chamber";
|
||||
version = "2.8.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "segmentio";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-7L9RaE4LvHRR6MUimze5QpbnfasWJdY4arfS/Usy2q0=";
|
||||
};
|
||||
|
||||
vendorSha256 = null;
|
||||
|
||||
# set the version. see: chamber's Makefile
|
||||
buildFlagsArray = ''
|
||||
-ldflags=
|
||||
-X main.Version=v${version}
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description =
|
||||
"Chamber is a tool for managing secrets by storing them in AWS SSM Parameter Store.";
|
||||
homepage = "https://github.com/segmentio/chamber";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ kalekseev ];
|
||||
};
|
||||
}
|
@ -826,6 +826,8 @@ in
|
||||
|
||||
boxes = callPackage ../tools/text/boxes { };
|
||||
|
||||
chamber = callPackage ../tools/admin/chamber { };
|
||||
|
||||
ec2_api_tools = callPackage ../tools/virtualization/ec2-api-tools { };
|
||||
|
||||
ec2_ami_tools = callPackage ../tools/virtualization/ec2-ami-tools { };
|
||||
|
Loading…
Reference in New Issue
Block a user