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

41 lines
1.1 KiB
Nix
Raw Normal View History

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