summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/cluster/helm
diff options
context:
space:
mode:
authorNick Novitski <nick@expo.io>2018-01-21 17:40:21 -0800
committerNick Novitski <nick@expo.io>2018-01-21 17:54:27 -0800
commit0fdf29224eae3876aa9d695fb1fe16faeb7cbdb2 (patch)
tree2e517d0ab73cb705ad59f0238052731ee819bc05 /pkgs/applications/networking/cluster/helm
parentd585a3207b4cf83279b12e80d4aed3a21b475de2 (diff)
init: kubectl at 1.7.9 (alias for kubernetes with only kubectl component)
Diffstat (limited to 'pkgs/applications/networking/cluster/helm')
-rw-r--r--pkgs/applications/networking/cluster/helm/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/cluster/helm/default.nix b/pkgs/applications/networking/cluster/helm/default.nix
index 408019eeb4b2..f9548ce87f74 100644
--- a/pkgs/applications/networking/cluster/helm/default.nix
+++ b/pkgs/applications/networking/cluster/helm/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, kubernetes }:
+{ stdenv, fetchurl, kubectl }:
let
arch = if stdenv.isLinux
then "linux-amd64"
@@ -21,7 +21,7 @@ stdenv.mkDerivation {
buildInputs = [ ];
- propagatedBuildInputs = [ kubernetes ];
+ propagatedBuildInputs = [ kubectl ];
phases = [ "buildPhase" "installPhase" ];