From d0c43b82f91b83aa4e294e4788916b2a38007e64 Mon Sep 17 00:00:00 2001 From: Zhong Jianxin Date: Wed, 22 Feb 2023 16:38:06 +0800 Subject: [PATCH] helmfile: Fix version string --- pkgs/applications/networking/cluster/helmfile/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/cluster/helmfile/default.nix b/pkgs/applications/networking/cluster/helmfile/default.nix index fba5d36a4256..7ae583727550 100644 --- a/pkgs/applications/networking/cluster/helmfile/default.nix +++ b/pkgs/applications/networking/cluster/helmfile/default.nix @@ -17,7 +17,7 @@ buildGoModule rec { subPackages = [ "." ]; - ldflags = [ "-s" "-w" "-X github.com/helmfile/helmfile/pkg/app/version.Version=${version}" ]; + ldflags = [ "-s" "-w" "-X go.szostok.io/version.version=v${version}" ]; nativeBuildInputs = [ installShellFiles ];