forked from mirrors/nixpkgs
Merge pull request #246227 from koralowiec/feat/add-kubectl-explore-package
kubectl-explore: init at 0.7.1
This commit is contained in:
commit
9418167277
|
@ -9041,6 +9041,12 @@
|
|||
githubId = 524268;
|
||||
name = "Koral";
|
||||
};
|
||||
koralowiec = {
|
||||
email = "qnlgzyrw@anonaddy.me";
|
||||
github = "koralowiec";
|
||||
githubId = 36413794;
|
||||
name = "Arek Kalandyk";
|
||||
};
|
||||
koslambrou = {
|
||||
email = "koslambrou@gmail.com";
|
||||
github = "koslambrou";
|
||||
|
|
|
@ -0,0 +1,24 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "kubectl-explore";
|
||||
version = "0.7.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "keisku";
|
||||
repo = "kubectl-explore";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-4WxvVsA05Mta7AcrGe26B+Up+x/gwdlCnb/PN9Ehu18=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-z/bPfY9UVqOnrA9jNUtM7jg53/URAMAJQAqH9D5KVPQ=";
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "A better kubectl explain with the fuzzy finder";
|
||||
homepage = "https://github.com/keisku/kubectl-explore";
|
||||
changelog = "https://github.com/keisku/kubectl-explore/releases/tag/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.koralowiec ];
|
||||
};
|
||||
}
|
|
@ -32795,6 +32795,8 @@ with pkgs;
|
|||
|
||||
kubectl-example = callPackage ../applications/networking/cluster/kubectl-example { };
|
||||
|
||||
kubectl-explore = callPackage ../applications/networking/cluster/kubectl-explore { };
|
||||
|
||||
kubectl-gadget = callPackage ../applications/networking/cluster/kubectl-gadget { };
|
||||
|
||||
kubectl-images = callPackage ../applications/networking/cluster/kubectl-images { };
|
||||
|
|
Loading…
Reference in a new issue