kubecm: init at 0.22.1

fix lint
This commit is contained in:
Quentin JOLY 2023-04-24 07:41:45 +00:00 committed by Anderson Torres
parent 2600c94f7f
commit 53264e7daa
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "kubecm";
version = "0.22.1";
src = fetchFromGitHub {
owner = "sunny0826";
repo = "kubecm";
rev = "v${version}";
hash = "sha256-0oQOuBYCDNnOODM2ZSqTgOI+jHWuHTtsk2NfGIPMy5A=";
};
vendorHash = "sha256-fVPiEDB6WFu2x5EY7NjmJEEq297QxP10593cXxxv8iI=";
ldflags = [ "-s" "-w" "-X github.com/sunny0826/kubecm/version.Version=${version}"];
doCheck = false;
meta = with lib; {
description = "Manage your kubeconfig more easily";
homepage = "https://github.com/sunny0826/kubecm/";
license = licenses.asl20;
maintainers = with maintainers; [ qjoly ];
};
}

View file

@ -31620,6 +31620,8 @@ with pkgs;
k9s = callPackage ../applications/networking/cluster/k9s { };
kubecm = callPackage ../applications/networking/cluster/kubecm { };
ktunnel = callPackage ../applications/networking/cluster/ktunnel { };
ktop = callPackage ../applications/networking/cluster/ktop { };