nixpkgs/pkgs/applications/networking/cluster/qbec/default.nix

22 lines
599 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2019-09-13 16:40:58 -07:00
buildGoModule rec {
pname = "qbec";
2020-06-14 18:59:09 -07:00
version = "0.12.0";
2019-09-13 16:40:58 -07:00
src = fetchFromGitHub {
owner = "splunk";
repo = "qbec";
rev = "v${version}";
2020-06-14 18:59:09 -07:00
sha256 = "0vy1cqqyga68qjbvyhsgl281qkbsvhvmwbxc93hygsxzm9kczy4p";
2019-09-13 16:40:58 -07:00
};
2020-06-14 18:59:09 -07:00
vendorSha256 = "15hbjghi2ifylg7nr85qlk0alsy97h9zj6hf5w84m76dla2bcjf3";
2019-09-13 16:40:58 -07:00
meta = with lib; {
2019-09-13 16:40:58 -07:00
description = "Configure kubernetes objects on multiple clusters using jsonnet https://qbec.io";
2020-03-14 05:17:01 -07:00
homepage = "https://github.com/splunk/qbec";
2019-09-13 16:40:58 -07:00
license = licenses.asl20;
maintainers = with maintainers; [ groodt ];
};
}