nixpkgs/pkgs/tools/admin/chamber/default.nix

28 lines
684 B
Nix
Raw Normal View History

2021-05-10 11:20:00 +02:00
{ buildGoModule, lib, fetchFromGitHub }:
2020-12-27 22:43:24 +01:00
2020-08-19 17:17:35 +02:00
buildGoModule rec {
pname = "chamber";
2021-05-10 11:20:00 +02:00
version = "2.10.0";
2020-08-19 17:17:35 +02:00
src = fetchFromGitHub {
owner = "segmentio";
repo = pname;
rev = "v${version}";
2021-05-10 11:20:00 +02:00
sha256 = "4G/QGoztpcLIspHxD5G+obG5h05SZek4keOJ5qS3/zg=";
2020-08-19 17:17:35 +02:00
};
2021-05-10 11:20:00 +02:00
CGO_ENABLED = 0;
2020-12-27 22:43:24 +01:00
2021-05-10 11:20:00 +02:00
vendorSha256 = "XpLLolxWu9aMp1cyG4dUQk4YtknbIRMmBUdSeyY4PNk=";
2020-08-19 17:17:35 +02:00
2021-05-10 11:20:00 +02:00
buildFlagsArray = [ "-ldflags=-s -w -X main.Version=v${version}" ];
2020-08-19 17:17:35 +02:00
meta = with lib; {
description =
"A tool for managing secrets by storing them in AWS SSM Parameter Store";
2020-08-19 17:17:35 +02:00
homepage = "https://github.com/segmentio/chamber";
license = licenses.mit;
maintainers = with maintainers; [ kalekseev ];
};
}