about summary refs log tree commit diff
path: root/pkgs/tools/admin
diff options
context:
space:
mode:
authorAndreas Rammhold <andreas@rammhold.de>2019-09-30 14:45:47 +0200
committerGitHub <noreply@github.com>2019-09-30 14:45:47 +0200
commit475e88a6fbdcb16fcafd035c7dac27a06fc57bd3 (patch)
treebcf79d7f94e328db8bacfbba40b47c8c97c99fac /pkgs/tools/admin
parentaab7e12a872e46c466ab3cb9c93dd1974dcd6eb9 (diff)
parentdbda0f2052ca361898f9154b8104c0ccac9a13fc (diff)
downloadnixlib-475e88a6fbdcb16fcafd035c7dac27a06fc57bd3.tar
nixlib-475e88a6fbdcb16fcafd035c7dac27a06fc57bd3.tar.gz
nixlib-475e88a6fbdcb16fcafd035c7dac27a06fc57bd3.tar.bz2
nixlib-475e88a6fbdcb16fcafd035c7dac27a06fc57bd3.tar.lz
nixlib-475e88a6fbdcb16fcafd035c7dac27a06fc57bd3.tar.xz
nixlib-475e88a6fbdcb16fcafd035c7dac27a06fc57bd3.tar.zst
nixlib-475e88a6fbdcb16fcafd035c7dac27a06fc57bd3.zip
Merge pull request #70045 from nagisa/berglas-init-0.2.0
berglas: init at 0.2.0
Diffstat (limited to 'pkgs/tools/admin')
-rw-r--r--pkgs/tools/admin/berglas/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/tools/admin/berglas/default.nix b/pkgs/tools/admin/berglas/default.nix
new file mode 100644
index 000000000000..239fc9691f7e
--- /dev/null
+++ b/pkgs/tools/admin/berglas/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, buildGoModule, fetchFromGitHub }:
+
+buildGoModule rec {
+
+  name = "berglas-${version}";
+  version = "0.2.0";
+
+  src = fetchFromGitHub {
+    owner = "GoogleCloudPlatform";
+    repo = "berglas";
+    rev = "v0.2.0";
+    sha256 = "1d75x0n1d1ry2xmy6h64qqc0dlnivipycv3p0aihyp3l810gpdbk";
+  };
+
+  modSha256 = "0fvgvrvdpdwjx51wmbf0rdwnr9l1l212qbvznvif3xsi5nnlkx6r";
+
+  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;
+  };
+}