2022-02-04 12:16:47 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
2018-10-09 06:28:50 +01:00
|
|
|
|
2022-02-04 12:16:47 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "helm";
|
2022-01-26 11:29:56 +00:00
|
|
|
version = "3.8.0";
|
|
|
|
gitCommit = "d14138609b01886f544b2025f5000351c9eb092e";
|
2016-12-12 23:43:24 +00:00
|
|
|
|
2018-10-09 06:28:50 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "helm";
|
|
|
|
repo = "helm";
|
|
|
|
rev = "v${version}";
|
2022-01-26 11:29:56 +00:00
|
|
|
sha256 = "sha256-/vxf3YfBP1WHFpqll6iq4m+X4NA16qHnuGA0wvrVRsg=";
|
2016-12-12 23:43:24 +00:00
|
|
|
};
|
2022-01-26 11:29:56 +00:00
|
|
|
vendorSha256 = "sha256-M7XId+2HIh1mFzU54qQZEisWdVq67RlGJjlw+2dpiDc=";
|
2016-12-12 23:43:24 +00:00
|
|
|
|
2020-08-04 01:26:27 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2019-11-13 16:07:05 +00:00
|
|
|
subPackages = [ "cmd/helm" ];
|
2021-06-30 02:52:45 +01:00
|
|
|
ldflags = [
|
2022-01-26 11:29:56 +00:00
|
|
|
"-w"
|
|
|
|
"-s"
|
2021-06-30 02:52:45 +01:00
|
|
|
"-X helm.sh/helm/v3/internal/version.version=v${version}"
|
|
|
|
"-X helm.sh/helm/v3/internal/version.gitCommit=${gitCommit}"
|
|
|
|
];
|
2016-12-12 23:43:24 +00:00
|
|
|
|
2019-12-13 21:37:30 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = ''
|
|
|
|
$out/bin/helm completion bash > helm.bash
|
|
|
|
$out/bin/helm completion zsh > helm.zsh
|
|
|
|
installShellCompletion helm.{bash,zsh}
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/kubernetes/helm";
|
2016-12-12 23:43:24 +00:00
|
|
|
description = "A package manager for kubernetes";
|
|
|
|
license = licenses.asl20;
|
2020-09-07 01:24:12 +01:00
|
|
|
maintainers = with maintainers; [ rlupton20 edude03 saschagrunert Frostman Chili-Man ];
|
2016-12-12 23:43:24 +00:00
|
|
|
};
|
2020-05-18 16:28:45 +01:00
|
|
|
}
|