nixpkgs/pkgs/applications/networking/cluster/minikube/default.nix

56 lines
1.3 KiB
Nix
Raw Normal View History

2019-08-13 18:02:34 +00:00
{ stdenv
, buildGoModule
, fetchFromGitHub
, go-bindata
2020-04-28 08:27:52 +00:00
, installShellFiles
, pkg-config
, which
2019-08-13 18:02:34 +00:00
, libvirt
, vmnet
2018-06-06 21:38:05 +00:00
}:
2019-08-13 18:02:34 +00:00
buildGoModule rec {
2020-04-28 08:27:52 +00:00
pname = "minikube";
2020-08-06 12:06:49 +00:00
version = "1.12.2";
2020-04-28 08:27:52 +00:00
2020-08-06 12:06:49 +00:00
vendorSha256 = "0smjj2sq09k1ai79lk74gi056hfls7qy8x08wkq2g24fxi06cr94";
doCheck = false;
src = fetchFromGitHub {
2020-04-28 08:27:52 +00:00
owner = "kubernetes";
repo = "minikube";
rev = "v${version}";
2020-08-06 12:06:49 +00:00
sha256 = "1x28s6d2nibm76qd3kjsa7wkyhqvnwdy9rfwk9xf45hzrx9700sm";
2016-12-06 01:23:59 +00:00
};
2020-04-28 08:27:52 +00:00
nativeBuildInputs = [ go-bindata installShellFiles pkg-config which ];
2017-03-05 03:23:44 +00:00
2020-04-28 08:27:52 +00:00
buildInputs = if stdenv.isDarwin then [ vmnet ] else if stdenv.isLinux then [ libvirt ] else null;
2020-04-28 08:27:52 +00:00
buildPhase = ''
2020-07-12 09:20:00 +00:00
make COMMIT=${src.rev}
'';
2020-04-28 08:27:52 +00:00
installPhase = ''
install out/minikube -Dt $out/bin
export HOME=$PWD
export MINIKUBE_WANTUPDATENOTIFICATION=false
export MINIKUBE_WANTKUBECTLDOWNLOADMSG=false
2019-08-13 18:02:34 +00:00
2020-07-12 09:20:00 +00:00
for shell in bash zsh fish; do
2020-04-28 08:27:52 +00:00
$out/bin/minikube completion $shell > minikube.$shell
installShellCompletion minikube.$shell
done
'';
2016-12-06 01:23:59 +00:00
meta = with stdenv.lib; {
2020-04-28 08:27:52 +00:00
homepage = "https://minikube.sigs.k8s.io";
2016-12-06 01:23:59 +00:00
description = "A tool that makes it easy to run Kubernetes locally";
2020-04-28 08:27:52 +00:00
license = licenses.asl20;
2019-08-13 18:02:34 +00:00
maintainers = with maintainers; [ ebzzry copumpkin vdemeester atkinschang ];
2020-04-28 08:27:52 +00:00
platforms = platforms.unix;
2016-12-06 01:23:59 +00:00
};
}