3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/security/doppler/default.nix

29 lines
757 B
Nix
Raw Normal View History

2020-08-07 00:36:01 +01:00
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "doppler";
2021-03-10 20:38:48 +00:00
version = "3.23.1";
2020-08-07 00:36:01 +01:00
src = fetchFromGitHub {
owner = "dopplerhq";
repo = "cli";
rev = version;
2021-03-10 20:38:48 +00:00
sha256 = "sha256-6sTsASfHIFH1V3Q20R2y8AiOVZ4NR4GGRCKRVr25kkc=";
2020-08-07 00:36:01 +01:00
};
2021-02-28 11:10:03 +00:00
vendorSha256 = "sha256-UaR/xYGMI+C9aID85aPSfVzmTWXj4KcjfOJ6TTJ8KoY=";
2020-08-07 00:36:01 +01:00
buildFlagsArray = "-ldflags=-X github.com/DopplerHQ/cli/pkg/version.ProgramVersion=v${version}";
postInstall = ''
mv $out/bin/cli $out/bin/doppler
'';
meta = with lib; {
homepage = "https://doppler.com";
description = "The official CLI for interacting with your Doppler Enclave secrets and configuation";
license = licenses.asl20;
maintainers = with maintainers; [ lucperkins ];
};
}