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

34 lines
969 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
2018-10-09 07:28:50 +02:00
buildGoModule rec {
pname = "helm";
2021-03-11 22:38:49 +01:00
version = "3.5.3";
2018-10-09 07:28:50 +02:00
src = fetchFromGitHub {
owner = "helm";
repo = "helm";
rev = "v${version}";
2021-03-11 22:38:49 +01:00
sha256 = "sha256-7xO07JDy6ujWlDF+5Xd3myRQ8ajTppCXz9fNe4yizVw=";
};
2021-03-11 22:38:49 +01:00
vendorSha256 = "sha256-lpEoUgABtJczwShNdvD+zYAPDFTJqILSei2YY6mQ2mw=";
doCheck = false;
subPackages = [ "cmd/helm" ];
buildFlagsArray = [ "-ldflags=-w -s -X helm.sh/helm/v3/internal/version.version=v${version}" ];
2019-12-13 22:37:30 +01:00
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
$out/bin/helm completion bash > helm.bash
$out/bin/helm completion zsh > helm.zsh
installShellCompletion helm.{bash,zsh}
'';
meta = with lib; {
homepage = "https://github.com/kubernetes/helm";
description = "A package manager for kubernetes";
license = licenses.asl20;
maintainers = with maintainers; [ rlupton20 edude03 saschagrunert Frostman Chili-Man ];
};
2020-05-18 17:28:45 +02:00
}