Unverified Commit 94181672 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

Merge pull request #246227 from koralowiec/feat/add-kubectl-explore-package

kubectl-explore: init at 0.7.1
parents 1e186dd0 458308d1
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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";
+24 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };