mirror of
https://github.com/tboerger/nixos-config
synced 2024-11-22 18:21:58 +01:00
26 lines
671 B
Nix
26 lines
671 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "kubectl-neat";
|
|
version = "2.0.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "itaysk";
|
|
repo = "kubectl-neat";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-j8v0zJDBqHzmLamIZPW9UvMe9bv/m3JUQKY+wsgMTFk=";
|
|
};
|
|
|
|
vendorHash = "sha256-vGXoYR0DT9V1BD/FN/4szOal0clsLlqReTFkAd2beMw=";
|
|
|
|
doCheck = false;
|
|
subPackages = [ "." ];
|
|
|
|
meta = with lib; {
|
|
description = "A kubectl plugin that cleans up Kubernetes yaml and json output to make it readable";
|
|
homepage = "https://github.com/itaysk/kubectl-neat/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ tboerger ];
|
|
};
|
|
}
|