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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.1 KiB
Nix
Raw Normal View History

2022-07-12 20:25:37 +00:00
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
2018-05-22 16:38:05 +00:00
2020-06-27 09:20:00 +00:00
buildGoModule rec {
pname = "helmfile";
version = "0.145.2";
2018-05-22 16:38:05 +00:00
src = fetchFromGitHub {
owner = "helmfile";
2018-05-22 16:38:05 +00:00
repo = "helmfile";
rev = "v${version}";
sha256 = "sha256-ipGMGby7qUoFJNc+7+Gq+JaBUdxm19NwhklWsTpslVI=";
2018-05-22 16:38:05 +00:00
};
vendorSha256 = "sha256-031Xdr3u35uirDBZhExdh8PMAZa1gfMTC2II8VMbr6Q=";
doCheck = false;
2020-06-27 09:20:00 +00:00
subPackages = [ "." ];
ldflags = [ "-s" "-w" "-X github.com/helmfile/helmfile/pkg/app/version.Version=${version}" ];
2018-10-09 08:41:13 +00:00
2022-07-12 20:25:37 +00:00
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
installShellCompletion --cmd helmfile \
--bash ./autocomplete/helmfile_bash_autocomplete \
--zsh ./autocomplete/helmfile_zsh_autocomplete
'';
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 ];
platforms = lib.platforms.unix;
2018-05-22 16:38:05 +00:00
};
2020-06-27 09:20:00 +00:00
}