kubedb-cli: init at 0.19.0

This commit is contained in:
Tristan Gosselin-Hane 2021-07-22 01:26:00 -04:00
parent 5efc01ff8f
commit 3ef4779dfe
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "kubedb-cli";
version = "0.19.0";
src = fetchFromGitHub {
owner = "kubedb";
repo = "cli";
rev = "v${version}";
sha256 = "sha256-CwAa2YqJ0R+L+VwxqruQmZJUctP4GgKszY49ZVyyNBE=";
};
vendorSha256 = null;
# Don't compile the documentation stuff
subPackages = [ "cmd/kubectl-dba" ];
meta = with lib; {
description = "kubectl plugin for KubeDB by AppsCode.";
homepage = "https://github.com/kubedb/cli";
license = licenses.unfree;
maintainers = [ maintainers.starcraft66 ];
};
}

View file

@ -25232,6 +25232,8 @@ in
ktorrent = libsForQt5.callPackage ../applications/networking/p2p/ktorrent { };
kubedb-cli = callPackage ../applications/networking/cluster/kubedb-cli { };
kubecfg = callPackage ../applications/networking/cluster/kubecfg { };
kube-score = callPackage ../applications/networking/cluster/kube-score { };