kubectl-klock: init at 0.3.1

This commit is contained in:
Sven Mattsen 2023-08-15 09:48:16 +02:00
parent 03865edfee
commit cc34e8af57
No known key found for this signature in database
GPG Key ID: 23E0FC8068AE39BA
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "kubectl-klock";
version = "0.3.1";
src = fetchFromGitHub {
owner = "jillejr";
repo = pname;
rev = "v${version}";
sha256 = "sha256-zOdi2QUVvRPPiI22bm7Z5OeShslysjcnvkhroOjbZrU=";
};
vendorSha256 = "sha256-r4oAmD/7CXYiWEWR/FC/Ab0LNxehWv6oCWjQ/fGU2rU=";
meta = with lib; {
description = "A kubectl plugin to render watch output in a more readable fashion";
homepage = "https://github.com/jillejr/kubectl-klock";
changelog = "https://github.com/jillejr/kubectl-klock/releases/tag/v${version}";
license = licenses.gpl3Plus;
maintainers = [ maintainers.scm2342 ];
};
}

View File

@ -33026,6 +33026,8 @@ with pkgs;
kubectl-images = callPackage ../applications/networking/cluster/kubectl-images { };
kubectl-klock = callPackage ../applications/networking/cluster/kubectl-klock { };
kubectl-ktop = callPackage ../applications/networking/cluster/kubectl-ktop { };
kubectl-node-shell = callPackage ../applications/networking/cluster/kubectl-node-shell { };