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

34 lines
971 B
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub, installShellFiles }:
2018-10-09 06:28:50 +01:00
buildGoModule rec {
pname = "helm";
2020-08-14 18:00:58 +01:00
version = "3.3.0";
2018-10-09 06:28:50 +01:00
src = fetchFromGitHub {
owner = "helm";
repo = "helm";
rev = "v${version}";
2020-08-14 18:00:58 +01:00
sha256 = "0bp2yscrvdm46w2nxas5zs9mcvdn2yp05k0wmcjl7gh42fs6hmcs";
};
2020-08-14 18:00:58 +01:00
vendorSha256 = "0lccglh5qpm5kp8xp1pn7y4cfxjpax83gyzjmnhh9h5y9zwgqp03";
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 ];
};
2020-05-18 16:28:45 +01:00
}