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.
This commit is contained in:
Maarten Hoogendoorn 2017-01-13 14:25:07 +01:00 committed by Robin Gloster
parent 3cbc64d5bb
commit af299d94eb

View file

@ -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; {