3
0
Fork 0
forked from mirrors/nixpkgs

kubecolor: init at 0.0.20

Co-authored-by: legendofmiracles <30902201+legendofmiracles@users.noreply.github.com>
This commit is contained in:
Ivan Kovnatsky 2021-11-20 12:43:52 +02:00
parent a03719be2e
commit aa87334943
No known key found for this signature in database
GPG key ID: 3A33FA4C82ED674F
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "kubecolor";
version = "0.0.20";
src = fetchFromGitHub {
owner = "hidetatz";
repo = pname;
rev = "v${version}";
sha256 = "sha256-bKHEp9AxH1CcObhNzD3BkNOdyWZu7JrEdsXpo49wEcI=";
};
vendorSha256 = "sha256-C1K7iEugA4HBLthcOI7EZ6H4YHW6el8X6FjVN1BeJR0=";
meta = with lib; {
description = "Colorizes kubectl output";
homepage = "https://github.com/hidetatz/kubecolor";
changelog = "https://github.com/hidetatz/kubecolor/releases/tag/v${version}";
license = licenses.mit;
maintainers = [ maintainers.ivankovnatsky ];
};
}

View file

@ -26293,6 +26293,8 @@ with pkgs;
kubeconform = callPackage ../applications/networking/cluster/kubeconform { };
kubecolor = callPackage ../applications/networking/cluster/kubecolor { };
kubectl = callPackage ../applications/networking/cluster/kubectl { };
kubebuilder = callPackage ../applications/networking/cluster/kubebuilder { };