aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-09-17 20:21:14 -0400
committerGitHub <noreply@github.com>2019-09-17 20:21:14 -0400
commit327c52ec706e5af65ee338154fd344100ff1a94b (patch)
tree6cdd8a71740a23f09e8771b534c012f18cf839e5 /pkgs/applications
parent48277d3f9da68c797e51909d4232be9cace854a6 (diff)
parenta0f7cd09977a702eea411b411200d5272242ee9f (diff)
Merge pull request #68717 from groodt/groodt-qbec-0.7.5
qbec: init at 0.7.5
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/cluster/qbec/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/networking/cluster/qbec/default.nix b/pkgs/applications/networking/cluster/qbec/default.nix
new file mode 100644
index 00000000000..9e578b9b333
--- /dev/null
+++ b/pkgs/applications/networking/cluster/qbec/default.nix
@@ -0,0 +1,22 @@
+{ lib, buildGoModule, fetchFromGitHub }:
+
+buildGoModule rec {
+ pname = "qbec";
+ version = "0.7.5";
+
+ src = fetchFromGitHub {
+ owner = "splunk";
+ repo = "qbec";
+ rev = "v${version}";
+ sha256 = "1q3rbxih4fn0zv8dni5dxb3pq840spplfy08x941najqfgflv9gb";
+ };
+
+ modSha256 = "0s1brqvzm1ghhqb46aqfj0lpnaq76rav0hwwb82ccw8h7052y4jn";
+
+ meta = with lib; {
+ description = "Configure kubernetes objects on multiple clusters using jsonnet https://qbec.io";
+ homepage = https://github.com/splunk/qbec;
+ license = licenses.asl20;
+ maintainers = with maintainers; [ groodt ];
+ };
+}