Skip to content

Commit

Permalink
kubectl-graph: init at v0.7.0, add maintainer rksm
Browse files Browse the repository at this point in the history
  • Loading branch information
rksm committed Oct 13, 2024
1 parent 4fc86ed commit ef543e0
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18250,6 +18250,12 @@
githubId = 82817;
name = "Robert Kreuzer";
};
rksm = {
email = "robert@kra.hn";
github = "rksm";
githubId = 467450;
name = "Robert Krahn";
};
rlupton20 = {
email = "richard.lupton@gmail.com";
github = "rlupton20";
Expand Down
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}";
sha256 = "sha256-5N1eC8J0nHEgFUCHEn5b3kUDj6MWejouQBKkdJKsaAo=";
};

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

meta = with lib; {
description = "A 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 = licenses.asl20;
maintainers = [ maintainers.rksm ];
};
}

0 comments on commit ef543e0

Please sign in to comment.