Skip to content

Commit

Permalink
Merge pull request #35425 from xeji/kubernetes-go-version
Browse files Browse the repository at this point in the history
kubernetes: patch broken go version check
  • Loading branch information
Mic92 committed Feb 24, 2018
2 parents cb6172c + 465d8b0 commit e9fdcc9
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pkgs/applications/networking/cluster/kubernetes/default.nix
@@ -1,4 +1,4 @@
{ stdenv, lib, fetchFromGitHub, removeReferencesTo, which, go, go-bindata, makeWrapper, rsync
{ stdenv, lib, fetchFromGitHub, fetchpatch, removeReferencesTo, which, go, go-bindata, makeWrapper, rsync
, iptables, coreutils
, components ? [
"cmd/kubeadm"
Expand Down Expand Up @@ -29,6 +29,14 @@ stdenv.mkDerivation rec {

outputs = ["out" "man" "pause"];

patches = [
# patch is from https://github.com/kubernetes/kubernetes/pull/58207
(fetchpatch {
url = "https://github.com/kubernetes/kubernetes/commit/a990b04dc8a7d8408a71eee40db93621cf2b6d1b.patch";
sha256 = "0piqilc5c9frikl74hamkffawwg1mvdwfxqvjnmk6wdma43dbb7w";
})
];

postPatch = ''
substituteInPlace "hack/lib/golang.sh" --replace "_cgo" ""
substituteInPlace "hack/generate-docs.sh" --replace "make" "make SHELL=${stdenv.shell}"
Expand Down

0 comments on commit e9fdcc9

Please sign in to comment.