helmfile: 0.144.0 -> 0.145.2
- Update src to helmfile/helmfile https://github.com/roboll/helmfile/issues/1824 - Update meta to better match upstream
This commit is contained in:
parent
4353938ac7
commit
37e4ff1b4c
@ -2,26 +2,30 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "helmfile";
|
pname = "helmfile";
|
||||||
version = "0.144.0";
|
version = "0.145.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "roboll";
|
owner = "helmfile";
|
||||||
repo = "helmfile";
|
repo = "helmfile";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-mfRPrgnOXqfmbpvaIxJNkgkdTEJKcFycrgFmQ7YDvTU=";
|
sha256 = "sha256-ipGMGby7qUoFJNc+7+Gq+JaBUdxm19NwhklWsTpslVI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorSha256 = "sha256-ddf3m0DGsjubzp/aERvhfJ51UKKSNMC1Xu7ybyif8HA=";
|
vendorSha256 = "sha256-031Xdr3u35uirDBZhExdh8PMAZa1gfMTC2II8VMbr6Q=";
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
subPackages = [ "." ];
|
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}" ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Deploy Kubernetes Helm charts";
|
description = "Declarative spec for deploying Helm charts";
|
||||||
homepage = "https://github.com/roboll/helmfile";
|
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;
|
license = lib.licenses.mit;
|
||||||
maintainers = with lib.maintainers; [ pneumaticat yurrriq ];
|
maintainers = with lib.maintainers; [ pneumaticat yurrriq ];
|
||||||
platforms = lib.platforms.unix;
|
platforms = lib.platforms.unix;
|
||||||
|
Loading…
Reference in New Issue
Block a user