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

22 lines
599 B
Nix
Raw Normal View History

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