Merge pull request #91597 from r-ryantm/auto-update/helmfile

helmfile: 0.118.6 -> 0.119.0
This commit is contained in:
Mario Rodas 2020-06-27 13:38:39 -05:00 committed by GitHub
commit af25c02576
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}; };
} }