Commit 946f7868 authored by koralowiec's avatar koralowiec
Browse files

kubectl-explore: init at 0.7.1

parent b1b263e5
Loading
Loading
Loading
Loading
+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
@@ -32779,6 +32779,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 { };