
This patch was produced in Vim by me, a human being. All errors are the fault of the operator. I did try to be careful. Co-authored-by: Peder Bergebakken Sundt <pbsds@hotmail.com> Co-authored-by: dotlambda <nix@dotlambda.de>
27 lines
632 B
Nix
27 lines
632 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildGoModule,
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "kubefetch";
|
|
version = "0.8.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jkulzer";
|
|
repo = "kubefetch";
|
|
rev = "${version}";
|
|
hash = "sha256-1NbbQ9f81DbfvpGayhMYdOTOZrDg2hdZi+qUOr2mntY=";
|
|
};
|
|
|
|
vendorHash = "sha256-qsncOsCxepySJI+rJnzbIGxSWlxMzqShtzcEoJD2UPw=";
|
|
|
|
meta = {
|
|
description = "Neofetch-like tool to show info about your Kubernetes Cluster";
|
|
homepage = "https://github.com/jkulzer/kubefetch";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [ wrmilling ];
|
|
mainProgram = "kubefetch";
|
|
};
|
|
}
|