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

23 lines
585 B
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub }:
2019-09-30 12:01:27 +00:00
buildGoModule rec {
2020-03-14 15:54:07 +00:00
pname = "berglas";
version = "0.5.1";
2019-09-30 12:01:27 +00:00
src = fetchFromGitHub {
owner = "GoogleCloudPlatform";
2020-03-14 15:54:07 +00:00
repo = pname;
rev = "v${version}";
sha256 = "0y393g36h35zzqyf5b10j6qq2jhvz83j17cmasnv6wbyrb3vnn0n";
2019-09-30 12:01:27 +00:00
};
2020-03-14 15:54:07 +00:00
modSha256 = "0m2bqx102lf6nihdjbl8a08xcwi80rawvh91j1cav0njm9w5vmmm";
2019-09-30 12:01:27 +00:00
meta = with stdenv.lib; {
description = "A tool for managing secrets on Google Cloud";
2020-03-14 15:54:07 +00:00
homepage = "https://github.com/GoogleCloudPlatform/berglas";
2019-09-30 12:01:27 +00:00
license = licenses.asl20;
platforms = platforms.unix;
};
}