kubectl: override kubernetes

This commit is contained in:
zowoq 2022-07-05 11:35:20 +10:00
parent 0c873dc3a2
commit dff0428a45

View File

@ -1,17 +1,8 @@
{ lib, buildGoModule, kubernetes }:
{ lib, kubernetes }:
buildGoModule rec {
kubernetes.overrideAttrs (_: rec {
pname = "kubectl";
inherit (kubernetes)
buildPhase
doCheck
nativeBuildInputs
src
vendorSha256
version
;
outputs = [ "out" "man" "convert" ];
WHAT = lib.concatStringsSep " " [
@ -38,4 +29,4 @@ buildGoModule rec {
homepage = "https://github.com/kubernetes/kubectl";
platforms = lib.platforms.unix;
};
}
})