Merge pull request #131029 from starcraft66/kubedb-cli
kubedb-cli: init at 0.19.0
This commit is contained in:
commit
540d2a621b
25
pkgs/applications/networking/cluster/kubedb-cli/default.nix
Normal file
25
pkgs/applications/networking/cluster/kubedb-cli/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -25234,6 +25234,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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user