mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
Merge pull request #181267 from yurrriq/helmfile-repo-move
helmfile: 0.144.0 -> 0.145.2
This commit is contained in:
commit
0436831b1a
1 changed files with 20 additions and 8 deletions
|
@ -1,27 +1,39 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "helmfile";
|
||||
version = "0.144.0";
|
||||
version = "0.145.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "roboll";
|
||||
owner = "helmfile";
|
||||
repo = "helmfile";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-mfRPrgnOXqfmbpvaIxJNkgkdTEJKcFycrgFmQ7YDvTU=";
|
||||
sha256 = "sha256-ipGMGby7qUoFJNc+7+Gq+JaBUdxm19NwhklWsTpslVI=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-ddf3m0DGsjubzp/aERvhfJ51UKKSNMC1Xu7ybyif8HA=";
|
||||
vendorSha256 = "sha256-031Xdr3u35uirDBZhExdh8PMAZa1gfMTC2II8VMbr6Q=";
|
||||
|
||||
doCheck = false;
|
||||
|
||||
subPackages = [ "." ];
|
||||
|
||||
ldflags = [ "-s" "-w" "-X github.com/roboll/helmfile/pkg/app/version.Version=${version}" ];
|
||||
ldflags = [ "-s" "-w" "-X github.com/helmfile/helmfile/pkg/app/version.Version=${version}" ];
|
||||
|
||||
nativeBuildInputs = [ installShellFiles ];
|
||||
|
||||
postInstall = ''
|
||||
installShellCompletion --cmd helmfile \
|
||||
--bash ./autocomplete/helmfile_bash_autocomplete \
|
||||
--zsh ./autocomplete/helmfile_zsh_autocomplete
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Deploy Kubernetes Helm charts";
|
||||
homepage = "https://github.com/roboll/helmfile";
|
||||
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;
|
||||
|
|
Loading…
Reference in a new issue