mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
Merge pull request #91597 from r-ryantm/auto-update/helmfile
helmfile: 0.118.6 -> 0.119.0
This commit is contained in:
commit
af25c02576
1 changed files with 9 additions and 14 deletions
|
@ -1,28 +1,23 @@
|
||||||
{ lib, buildGoModule, fetchFromGitHub, makeWrapper, kubernetes-helm, ... }:
|
{ lib, buildGoModule, fetchFromGitHub, makeWrapper, kubernetes-helm }:
|
||||||
|
|
||||||
let version = "0.118.6"; in
|
buildGoModule rec {
|
||||||
|
|
||||||
buildGoModule {
|
|
||||||
pname = "helmfile";
|
pname = "helmfile";
|
||||||
inherit version;
|
version = "0.119.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "roboll";
|
owner = "roboll";
|
||||||
repo = "helmfile";
|
repo = "helmfile";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0zbvz8kn52c1q4yn8n9z4rrf761h495fhjw72x9q1nh44hr7npwd";
|
sha256 = "1j9b0xw59w5ailwa7dqgbsdigviw8ng5r4jbsk9b80izcig805zz";
|
||||||
};
|
};
|
||||||
|
|
||||||
goPackagePath = "github.com/roboll/helmfile";
|
vendorSha256 = "11bw10s5wifzw2cy1100hyjv4xv7an7b05lcw6sphwyy56gsp2fy";
|
||||||
|
|
||||||
vendorSha256 = "0xj14f0yx7x9ziijd1yka1n6kbmmhbibsk3ppp8cn1pqrwgqk7pr";
|
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
buildFlagsArray = ''
|
subPackages = [ "." ];
|
||||||
-ldflags=
|
|
||||||
-X main.Version=${version}
|
buildFlagsArray = [ "-ldflags=-s -w -X github.com/roboll/helmfile/pkg/app/version.Version=${version}" ];
|
||||||
'';
|
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
wrapProgram $out/bin/helmfile \
|
wrapProgram $out/bin/helmfile \
|
||||||
|
@ -36,4 +31,4 @@ buildGoModule {
|
||||||
maintainers = with lib.maintainers; [ pneumaticat yurrriq ];
|
maintainers = with lib.maintainers; [ pneumaticat yurrriq ];
|
||||||
platforms = lib.platforms.unix;
|
platforms = lib.platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue