about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/networking/cluster/qbec/default.nix
blob: 9e578b9b333a5517aaafd62e5c746cbe62c7e439 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 ];
  };
}