mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 09:23:37 +00:00
53 lines
1.3 KiB
Nix
53 lines
1.3 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, makeWrapper
|
|
, pluginsDir ? null
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "helmfile";
|
|
version = "0.156.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "helmfile";
|
|
repo = "helmfile";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-MrDhOsjXo4aaeWSo/WNheUqom7kF2MzyaqeZXVAAzz4=";
|
|
};
|
|
|
|
vendorHash = "sha256-hMoBwA9KmQSBJkEu3UAxM1wi6RRHZdUhYqri5JGwEmw=";
|
|
|
|
doCheck = false;
|
|
|
|
subPackages = [ "." ];
|
|
|
|
ldflags = [ "-s" "-w" "-X go.szostok.io/version.version=v${version}" ];
|
|
|
|
nativeBuildInputs =
|
|
[ installShellFiles ] ++
|
|
lib.optional (pluginsDir != null) makeWrapper;
|
|
|
|
postInstall = lib.optionalString (pluginsDir != null) ''
|
|
wrapProgram $out/bin/helmfile \
|
|
--set HELM_PLUGINS "${pluginsDir}"
|
|
'' + ''
|
|
installShellCompletion --cmd helmfile \
|
|
--bash <($out/bin/helmfile completion bash) \
|
|
--fish <($out/bin/helmfile completion fish) \
|
|
--zsh <($out/bin/helmfile completion zsh)
|
|
'';
|
|
|
|
meta = {
|
|
description = "Declarative spec for deploying Helm charts";
|
|
longDescription = ''
|
|
Declaratively deploy your Kubernetes manifests, Kustomize configs,
|
|
and charts as Helm releases in one shot.
|
|
'';
|
|
homepage = "https://helmfile.readthedocs.io/";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ pneumaticat yurrriq ];
|
|
};
|
|
}
|