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

34 lines
981 B
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub, installShellFiles }:
2018-10-09 05:28:50 +00:00
buildGoModule rec {
pname = "helm";
2020-10-01 20:16:00 +00:00
version = "3.3.4";
2018-10-09 05:28:50 +00:00
src = fetchFromGitHub {
owner = "helm";
repo = "helm";
rev = "v${version}";
2020-10-01 20:16:00 +00:00
sha256 = "1b719kzchgis4imscgf6i7dvc1mq3ymgh5ganpb89kcs88qw3szj";
};
vendorSha256 = "0f8a0psvic923rh13f5041p7hr6w8dy9qxdw3l195yky5cf3fj6w";
doCheck = false;
subPackages = [ "cmd/helm" ];
buildFlagsArray = [ "-ldflags=-w -s -X helm.sh/helm/v3/internal/version.version=v${version}" ];
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}
'';
meta = with stdenv.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 15:28:45 +00:00
}