1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/applications/networking/cluster/qbec/default.nix

23 lines
597 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2019-09-14 00:40:58 +01:00
buildGoModule rec {
pname = "qbec";
2020-04-01 19:08:41 +01:00
version = "0.11.0";
2019-09-14 00:40:58 +01:00
src = fetchFromGitHub {
owner = "splunk";
repo = "qbec";
rev = "v${version}";
2020-04-01 19:08:41 +01:00
sha256 = "0krdfaha19wzi10rh0wfhki5nknbd5mndaxhrq7y9m840xy43d6d";
2019-09-14 00:40:58 +01:00
};
2020-04-01 19:08:41 +01:00
modSha256 = "1wb15vrkb4ryvrjp68ygmadnf78s354106ya210pnmsbb53rbhaz";
2019-09-14 00:40:58 +01:00
meta = with lib; {
2019-09-14 00:40:58 +01: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-14 00:40:58 +01:00
license = licenses.asl20;
maintainers = with maintainers; [ groodt ];
};
}