2015-03-18 13:26:40 +00:00
|
|
|
{ stdenv, fetchFromGitHub, which, go, makeWrapper, iptables, rsync, utillinux, coreutils }:
|
2014-11-15 16:18:14 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "kubernetes-${version}";
|
2015-04-25 13:18:05 +01:00
|
|
|
version = "0.15.0";
|
2014-11-15 16:18:14 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "GoogleCloudPlatform";
|
|
|
|
repo = "kubernetes";
|
2015-03-18 13:26:40 +00:00
|
|
|
rev = "v${version}";
|
2015-04-25 13:18:05 +01:00
|
|
|
sha256 = "1jiczhx01i8czm1gzd232z2ds2f1lvs5ifa9zjabhzw5ykfzdjg8";
|
2014-11-15 16:18:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ makeWrapper which go iptables rsync ];
|
|
|
|
|
2015-04-25 13:18:05 +01:00
|
|
|
buildPhase = ''
|
|
|
|
substituteInPlace "hack/lib/golang.sh" --replace "_cgo" ""
|
|
|
|
GOPATH=$(pwd)
|
|
|
|
patchShebangs ./hack
|
|
|
|
hack/build-go.sh --use_go_build
|
|
|
|
'';
|
2014-11-23 00:27:04 +00:00
|
|
|
|
2014-11-15 16:18:14 +00:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p "$out/bin"
|
|
|
|
cp _output/local/go/bin/* "$out/bin/"
|
|
|
|
'';
|
|
|
|
|
|
|
|
preFixup = ''
|
2015-03-18 13:26:40 +00:00
|
|
|
wrapProgram "$out/bin/kube-proxy" --prefix PATH : "${iptables}/bin"
|
|
|
|
wrapProgram "$out/bin/kubelet" --prefix PATH : "${utillinux}/bin"
|
2014-11-15 16:18:14 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2015-04-28 09:54:58 +01:00
|
|
|
description = "Open source implementation of container cluster management";
|
2014-11-15 16:18:14 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
homepage = https://github.com/GoogleCloudPlatform;
|
|
|
|
maintainers = with maintainers; [offline];
|
2014-11-30 00:24:59 +00:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2014-11-15 16:18:14 +00:00
|
|
|
};
|
|
|
|
}
|