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

24 lines
593 B
Nix
Raw Normal View History

2019-09-30 05:01:27 -07:00
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
name = "berglas-${version}";
2019-10-30 12:47:54 -07:00
version = "0.2.1";
2019-09-30 05:01:27 -07:00
src = fetchFromGitHub {
owner = "GoogleCloudPlatform";
repo = "berglas";
2019-10-30 12:47:54 -07:00
rev = "v0.2.1";
sha256 = "1m34rxiynmgsris1avjn7am50b8sds77515zlnna9qvsrywbzljc";
2019-09-30 05:01:27 -07:00
};
2019-10-30 12:47:54 -07:00
modSha256 = "0lfcrsb4r5hxxd652cxff23fnbrphp3lgwp5anpaddzcjcd2qyj8";
2019-09-30 05:01:27 -07:00
meta = with stdenv.lib; {
description = "A tool for managing secrets on Google Cloud";
homepage = https://github.com/GoogleCloudPlatform/berglas;
license = licenses.asl20;
platforms = platforms.unix;
};
}