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

80 lines
3.3 KiB
Nix
Raw Normal View History

2017-09-08 01:21:59 +01:00
{ stdenv, buildGoPackage, fetchFromGitHub, fetchurl, go-bindata, kubernetes, libvirt, qemu, docker-machine-kvm,
gpgme, makeWrapper, hostPlatform, vmnet }:
2016-12-06 01:23:59 +00:00
let
binPath = [ kubernetes ]
++ stdenv.lib.optionals stdenv.isLinux [ libvirt qemu docker-machine-kvm ]
++ stdenv.lib.optionals stdenv.isDarwin [];
# Normally, minikube bundles localkube in its own binary via go-bindata. Unfortunately, it needs to make that localkube
# a static linux binary, and our Linux nixpkgs go compiler doesn't seem to work when asking for a cgo binary that's static
# (presumably because we don't have some static system libraries it wants), and cross-compiling cgo on Darwin is a nightmare.
#
# Note that minikube can download (and cache) versions of localkube it needs on demand. Unfortunately, minikube's knowledge
2017-04-08 23:13:48 +01:00
# of where it can download versions of localkube seems to rely on a json file that doesn't get updated as often as we'd like. So
# instead, we download localkube ourselves and shove it into the minikube binary. The versions URL that minikube uses is
2017-04-08 23:13:48 +01:00
# currently https://storage.googleapis.com/minikube/k8s_releases.json
2017-10-27 15:13:03 +01:00
localkube-version = "1.8.0";
localkube-binary = fetchurl {
2017-04-08 23:13:48 +01:00
url = "https://storage.googleapis.com/minikube/k8sReleases/v${localkube-version}/localkube-linux-amd64";
2017-10-27 15:13:03 +01:00
sha256 = "09mv1g9i0d14brvvp2wxgmfqvgp0na5dbm4z76a660q1fxszvgqc";
};
in buildGoPackage rec {
pname = "minikube";
name = "${pname}-${version}";
2017-12-13 17:19:32 +00:00
version = "0.24.1";
2016-12-06 01:23:59 +00:00
goPackagePath = "k8s.io/minikube";
src = fetchFromGitHub {
owner = "kubernetes";
repo = "minikube";
rev = "v${version}";
2017-12-13 17:19:32 +00:00
sha256 = "18b5ic4lcn84hq2ji5alyx58x9vi0b03544i5xzfgn3h2k78kynk";
2016-12-06 01:23:59 +00:00
};
2017-11-14 13:39:19 +00:00
patches = [
./localkube.patch
];
# kubernetes is here only to shut up a loud warning when generating the completions below. minikube checks very eagerly
# that kubectl is on the $PATH, even if it doesn't use it at all to generate the completions
buildInputs = [ go-bindata makeWrapper kubernetes gpgme ] ++ stdenv.lib.optional hostPlatform.isDarwin vmnet;
subPackages = [ "cmd/minikube" ];
2016-12-06 01:23:59 +00:00
preBuild = ''
pushd go/src/${goPackagePath} >/dev/null
2016-12-06 01:23:59 +00:00
mkdir -p out
cp ${localkube-binary} out/localkube
2016-12-06 01:23:59 +00:00
go-bindata -nomemcopy -o pkg/minikube/assets/assets.go -pkg assets ./out/localkube deploy/addons/...
2017-03-05 03:23:44 +00:00
ISO_VERSION=$(grep "^ISO_VERSION" Makefile | sed "s/^.*\s//")
ISO_BUCKET=$(grep "^ISO_BUCKET" Makefile | sed "s/^.*\s//")
export buildFlagsArray="-ldflags=\
-X k8s.io/minikube/pkg/version.version=v${version} \
-X k8s.io/minikube/pkg/version.isoVersion=$ISO_VERSION \
-X k8s.io/minikube/pkg/version.isoPath=$ISO_BUCKET"
popd >/dev/null
'';
postInstall = ''
mkdir -p $bin/share/bash-completion/completions/
MINIKUBE_WANTUPDATENOTIFICATION=false HOME=$PWD $bin/bin/minikube completion bash > $bin/share/bash-completion/completions/minikube
2016-12-06 01:23:59 +00:00
'';
postFixup = "wrapProgram $bin/bin/${pname} --prefix PATH : ${stdenv.lib.makeBinPath binPath}";
2016-12-06 01:23:59 +00:00
meta = with stdenv.lib; {
homepage = https://github.com/kubernetes/minikube;
2016-12-06 01:23:59 +00:00
description = "A tool that makes it easy to run Kubernetes locally";
license = licenses.asl20;
maintainers = with maintainers; [ ebzzry copumpkin ];
platforms = with platforms; unix;
2016-12-06 01:23:59 +00:00
};
}