mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 08:31:59 +00:00
77cbf0db0a
Helm uses its version to determine what version of Tiller (the server component) to install. Without this patch it thinks it is `v2.11+unreleased` and tries to download `gcr.io/kubernetes-helm/tiller:v2.11`. After the patch it correctly downloads `gcr.io/kubernetes-helm/tiller:v2.11.0`. Fixes #49120.
49 lines
1.5 KiB
Nix
49 lines
1.5 KiB
Nix
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
version = "2.11.0";
|
|
name = "helm-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "helm";
|
|
repo = "helm";
|
|
rev = "v${version}";
|
|
sha256 = "1z810a6mxyrrw4i908dip8aqsj95c0kmv6xpb1wwhskg1zmf85wk";
|
|
};
|
|
|
|
goPackagePath = "k8s.io/helm";
|
|
subPackages = [ "cmd/helm" "cmd/tiller" "cmd/rudder" ];
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
# Thsese are the original flags from the helm makefile
|
|
buildFlagsArray = ''
|
|
-ldflags=-X k8s.io/helm/pkg/version.Version=v${version}
|
|
-w
|
|
-s
|
|
'';
|
|
|
|
preBuild = ''
|
|
# This is a hack(?) to flatten the dependency tree the same way glide or dep would
|
|
# Otherwise you'll get errors like
|
|
# have DeepCopyObject() "k8s.io/kubernetes/vendor/k8s.io/apimachinery/pkg/runtime".Object
|
|
# want DeepCopyObject() "k8s.io/apimachinery/pkg/runtime".Object
|
|
rm -rf $NIX_BUILD_TOP/go/src/k8s.io/kubernetes/vendor
|
|
rm -rf $NIX_BUILD_TOP/go/src/k8s.io/apiextensions-apiserver/vendor
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p $bin/share/bash-completion/completions
|
|
mkdir -p $bin/share/zsh/site-functions
|
|
$bin/bin/helm completion bash > $bin/share/bash-completion/completions/helm
|
|
$bin/bin/helm completion zsh > $bin/share/zsh/site-functions/_helm
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/kubernetes/helm;
|
|
description = "A package manager for kubernetes";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.rlupton20 maintainers.edude03 ];
|
|
};
|
|
}
|