about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/krane
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2022-02-17 15:42:34 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2022-02-19 07:00:48 +1000
commitc5531b81bc8e09e334059e45a10004de0127617b (patch)
tree03561a9bb0e6ee9d3dafe3b7be2a95a7b58bfeb7 /pkgs/applications/networking/cluster/krane
parentc2e75fdf9c4fce7ce31f8051b25bce7a216e6957 (diff)
krane: remove kubectl wrapper
defer to a user provided kubectl
Diffstat (limited to 'pkgs/applications/networking/cluster/krane')
-rw-r--r--pkgs/applications/networking/cluster/krane/default.nix9
1 files changed, 0 insertions, 9 deletions
diff --git a/pkgs/applications/networking/cluster/krane/default.nix b/pkgs/applications/networking/cluster/krane/default.nix
index 6d325d6f592e6..cc9d19fd8152b 100644
--- a/pkgs/applications/networking/cluster/krane/default.nix
+++ b/pkgs/applications/networking/cluster/krane/default.nix
@@ -1,7 +1,5 @@
 { lib
 , bundlerApp
-, makeWrapper
-, kubectl
 , bundlerUpdateScript
 }:
 
@@ -10,13 +8,6 @@ bundlerApp {
   gemdir = ./.;
   exes = [ "krane" ];
 
-  buildInputs = [ makeWrapper ];
-
-  postBuild = ''
-    wrapProgram "$out/bin/krane" \
-      --prefix PATH : ${lib.makeBinPath [ kubectl ]}
-  '';
-
   passthru.updateScript = bundlerUpdateScript "krane";
 
   meta = with lib; {