From af299d94ebc383b391dc58f165f40e8b4e25897a Mon Sep 17 00:00:00 2001 From: Maarten Hoogendoorn Date: Fri, 13 Jan 2017 14:25:07 +0100 Subject: [PATCH] minikube: disable shell autocompletion; causes impurities. Apparently the the generation of auto completion files depends on a network connection. My `nix-build --pure` failed because of this. Disabled autocompletion for now, given that minikube prints out lots of documentaton if you provide partial commands. --- pkgs/applications/networking/cluster/minikube/default.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/minikube/default.nix b/pkgs/applications/networking/cluster/minikube/default.nix index bf6085273d4..cd1ace993d6 100644 --- a/pkgs/applications/networking/cluster/minikube/default.nix +++ b/pkgs/applications/networking/cluster/minikube/default.nix @@ -30,9 +30,6 @@ stdenv.mkDerivation rec { installPhase = '' cp $src $out/bin/${pname} chmod +x $out/bin/${pname} - - mkdir -p $out/share/bash-completion/completions/ - HOME=$(pwd) $out/bin/minikube completion bash > $out/share/bash-completion/completions/minikube ''; meta = with stdenv.lib; {