chamber: init at 2.8.2

This commit is contained in:
Konstantin Alekseev 2020-08-19 18:17:35 +03:00 committed by zowoq
parent 76db685f59
commit 21ec91713d
2 changed files with 30 additions and 0 deletions

View 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 ];
};
}

View File

@ -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 { };