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

77 lines
2.3 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, fetchpatch, removeReferencesTo, which, go_1_9, go-bindata, makeWrapper, rsync
2016-10-10 16:48:00 +00:00
, iptables, coreutils
, components ? [
2017-01-23 20:13:31 +00:00
"cmd/kubeadm"
2016-10-10 16:48:00 +00:00
"cmd/kubectl"
"cmd/kubelet"
"cmd/kube-apiserver"
"cmd/kube-controller-manager"
"cmd/kube-proxy"
"plugin/cmd/kube-scheduler"
2017-09-08 23:59:33 +00:00
"test/e2e/e2e.test"
2016-10-10 16:48:00 +00:00
]
}:
with lib;
2014-11-15 16:18:14 +00:00
stdenv.mkDerivation rec {
name = "kubernetes-${version}";
2018-05-14 17:50:20 +00:00
version = "1.9.7";
2014-11-15 16:18:14 +00:00
src = fetchFromGitHub {
2016-06-06 10:58:51 +00:00
owner = "kubernetes";
2014-11-15 16:18:14 +00:00
repo = "kubernetes";
rev = "v${version}";
2018-05-14 17:50:20 +00:00
sha256 = "1dykh48c6bvypg51mlxjdyrggpjq597mjj83xgj1pfadsy6pp9bh";
2014-11-15 16:18:14 +00:00
};
2018-03-16 12:52:00 +00:00
# go > 1.10 should be fixed by https://github.com/kubernetes/kubernetes/pull/60373
buildInputs = [ removeReferencesTo makeWrapper which go_1_9 rsync go-bindata ];
2014-11-15 16:18:14 +00:00
outputs = ["out" "man" "pause"];
2016-10-10 16:48:00 +00:00
postPatch = ''
2015-04-25 12:18:05 +00:00
substituteInPlace "hack/lib/golang.sh" --replace "_cgo" ""
substituteInPlace "hack/generate-docs.sh" --replace "make" "make SHELL=${stdenv.shell}"
# hack/update-munge-docs.sh only performs some tests on the documentation.
# They broke building k8s; disabled for now.
echo "true" > "hack/update-munge-docs.sh"
2015-04-25 12:18:05 +00:00
patchShebangs ./hack
'';
2014-11-23 00:27:04 +00:00
2016-10-10 16:48:00 +00:00
WHAT="--use_go_build ${concatStringsSep " " components}";
postBuild = ''
./hack/generate-docs.sh
(cd build/pause && cc pause.c -o pause)
'';
2016-10-10 16:48:00 +00:00
2014-11-15 16:18:14 +00:00
installPhase = ''
2018-03-31 14:37:32 +00:00
mkdir -p "$out/bin" "$out/share/bash-completion/completions" "$out/share/zsh/site-functions" "$man/share/man" "$pause/bin"
2016-10-10 16:48:00 +00:00
cp _output/local/go/bin/* "$out/bin/"
cp build/pause/pause "$pause/bin/pause"
2016-10-10 16:48:00 +00:00
cp -R docs/man/man1 "$man/share/man"
2016-12-11 13:56:25 +00:00
2017-09-01 10:08:11 +00:00
cp cluster/addons/addon-manager/kube-addons.sh $out/bin/kube-addons
patchShebangs $out/bin/kube-addons
wrapProgram $out/bin/kube-addons --set "KUBECTL_BIN" "$out/bin/kubectl"
2016-12-11 13:56:25 +00:00
$out/bin/kubectl completion bash > $out/share/bash-completion/completions/kubectl
2018-03-31 14:37:32 +00:00
$out/bin/kubectl completion zsh > $out/share/zsh/site-functions/_kubectl
2014-11-15 16:18:14 +00:00
'';
preFixup = ''
find $out/bin $pause/bin -type f -exec remove-references-to -t ${go_1_9} '{}' +
2014-11-15 16:18:14 +00:00
'';
2016-10-10 16:48:00 +00:00
meta = {
2016-06-06 10:58:51 +00:00
description = "Production-Grade Container Scheduling and Management";
2014-11-15 16:18:14 +00:00
license = licenses.asl20;
2018-05-01 03:03:23 +00:00
homepage = https://kubernetes.io;
2014-11-15 16:18:14 +00:00
maintainers = with maintainers; [offline];
platforms = platforms.unix;
2014-11-15 16:18:14 +00:00
};
}