mirror of
https://github.com/tweag/gomod2nix.git
synced 2024-11-09 20:19:08 +00:00
33 lines
948 B
Nix
33 lines
948 B
Nix
{ stdenv, buildGoApplication, fetchFromGitHub, installShellFiles }:
|
|
|
|
buildGoApplication rec {
|
|
pname = "helm";
|
|
version = "3.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "helm";
|
|
repo = "helm";
|
|
rev = "v${version}";
|
|
sha256 = "13w0s11319qg9mmmxc24mlj0hrp0r529p3ny4gfzsl0vn3qzd6i2";
|
|
};
|
|
modules = ./gomod2nix.toml;
|
|
|
|
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 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 ];
|
|
};
|
|
}
|