tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
kubectl-explore: init at 0.7.1
koralowiec
2 years ago
946f7868
b1b263e5
+26
2 changed files
expand all
collapse all
unified
split
pkgs
applications
networking
cluster
kubectl-explore
default.nix
top-level
all-packages.nix
+24
pkgs/applications/networking/cluster/kubectl-explore/default.nix
···
1
1
+
{ lib, buildGoModule, fetchFromGitHub }:
2
2
+
3
3
+
buildGoModule rec {
4
4
+
pname = "kubectl-explore";
5
5
+
version = "0.7.1";
6
6
+
7
7
+
src = fetchFromGitHub {
8
8
+
owner = "keisku";
9
9
+
repo = "kubectl-explore";
10
10
+
rev = "v${version}";
11
11
+
hash = "sha256-4WxvVsA05Mta7AcrGe26B+Up+x/gwdlCnb/PN9Ehu18=";
12
12
+
};
13
13
+
14
14
+
vendorHash = "sha256-z/bPfY9UVqOnrA9jNUtM7jg53/URAMAJQAqH9D5KVPQ=";
15
15
+
doCheck = false;
16
16
+
17
17
+
meta = with lib; {
18
18
+
description = "A better kubectl explain with the fuzzy finder";
19
19
+
homepage = "https://github.com/keisku/kubectl-explore";
20
20
+
changelog = "https://github.com/keisku/kubectl-explore/releases/tag/v${version}";
21
21
+
license = licenses.mit;
22
22
+
maintainers = [ maintainers.koralowiec ];
23
23
+
};
24
24
+
}
+2
pkgs/top-level/all-packages.nix
···
32779
32779
32780
32780
kubectl-example = callPackage ../applications/networking/cluster/kubectl-example { };
32781
32781
32782
32782
+
kubectl-explore = callPackage ../applications/networking/cluster/kubectl-explore { };
32783
32783
+
32782
32784
kubectl-gadget = callPackage ../applications/networking/cluster/kubectl-gadget { };
32783
32785
32784
32786
kubectl-images = callPackage ../applications/networking/cluster/kubectl-images { };