forked from mirrors/nixpkgs
34 lines
969 B
Nix
34 lines
969 B
Nix
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
|
|
|
buildGoModule rec {
|
|
pname = "helm";
|
|
version = "3.5.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "helm";
|
|
repo = "helm";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-7xO07JDy6ujWlDF+5Xd3myRQ8ajTppCXz9fNe4yizVw=";
|
|
};
|
|
vendorSha256 = "sha256-lpEoUgABtJczwShNdvD+zYAPDFTJqILSei2YY6mQ2mw=";
|
|
|
|
doCheck = false;
|
|
|
|
subPackages = [ "cmd/helm" ];
|
|
buildFlagsArray = [ "-ldflags=-w -s -X helm.sh/helm/v3/internal/version.version=v${version}" ];
|
|
|
|
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 ];
|
|
};
|
|
}
|