mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
kubectl-graph: init at 0.7.0
This commit is contained in:
parent
933ccc51f4
commit
9b7877aa1f
28
pkgs/by-name/ku/kubectl-graph/package.nix
Normal file
28
pkgs/by-name/ku/kubectl-graph/package.nix
Normal file
@ -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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user