Skip to content

Commit

Permalink
kubectl-graph: init at 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rksm committed Oct 17, 2024
1 parent 933ccc5 commit 8ad2102
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pkgs/by-name/ku/kubectl-graph/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
lib,
fetchFromGitHub,
buildGoModule,
}:

buildGoModule rec {
pname = "kubectl-graph";
version = "0.7.0";

src = fetchFromGitHub {
owner = "steveteuber";
repo = "kubectl-graph";
rev = "v${version}";
hash = "sha256-5N1eC8J0nHEgFUCHEn5b3kUDj6MWejouQBKkdJKsaAo=";
};

vendorHash = "sha256-fvn+CoOyMRjsIemMRXitMjTlbbhjrlDIHu398b4/ZZ0=";

meta = {
description = "kubectl plugin to visualize Kubernetes resources and relationships";
homepage = "https://github.com/steveteuber/kubectl-graph";
changelog = "https://github.com/steveteuber/kubectl-graph/releases/tag/v${version}";
mainProgram = "kubectl-graph";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.rksm ];
};
}

0 comments on commit 8ad2102

Please sign in to comment.