57 lines
1.3 KiB
Nix
Raw Normal View History

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