Add kueuectl via nix

This commit is contained in:
2026-03-17 10:14:18 +01:00
parent 5eea620225
commit 730dc2b865
2 changed files with 21 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "kueuectl";
version = "0.16.3";
src = fetchFromGitHub {
owner = "kubernetes-sigs";
repo = "kueue";
rev = "v${version}";
hash = "sha256-JbU+ZoQ+YriaiIbbVCe45OTYycxYRanLhmQAdpE+xQ4=";
};
vendorHash = null;
subPackages = [ "cmd/kueuectl" ];
}
+2
View File
@@ -7,6 +7,7 @@ let
overlays = [ ]; overlays = [ ];
}; };
treefmt = import ./nix/treefmt.nix { }; treefmt = import ./nix/treefmt.nix { };
kueuectl = pkgs.callPackage ./nix/kueuectl.nix { };
in in
pkgs.mkShellNoCC { pkgs.mkShellNoCC {
packages = [ packages = [
@@ -27,6 +28,7 @@ pkgs.mkShellNoCC {
pkgs.kubectl-rook-ceph pkgs.kubectl-rook-ceph
# other tools activate when needed # other tools activate when needed
kueuectl
# pkgs.step-cli # pkgs.step-cli
# pkgs.linkerd # pkgs.linkerd
# pkgs.cmctl # pkgs.cmctl