From 98bf6a542a3b938201b03967d077d27b02be104b Mon Sep 17 00:00:00 2001 From: Nikola Knezevic Date: Wed, 10 Jun 2026 13:28:06 +0200 Subject: [PATCH] kubernetes-helm: fix darwin side to use correct substitute paths darwin part was ignore in the recent upgrade to 4.2.0, so builds are failing on darwin. --- pkgs/applications/networking/cluster/helm/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/networking/cluster/helm/default.nix b/pkgs/applications/networking/cluster/helm/default.nix index baaa3a1d7e45..0981a3ce5bc8 100644 --- a/pkgs/applications/networking/cluster/helm/default.nix +++ b/pkgs/applications/networking/cluster/helm/default.nix @@ -72,15 +72,15 @@ buildGoModule (finalAttrs: { '' + lib.optionalString stdenv.hostPlatform.isDarwin '' # skipping as test fails in sandbox - substituteInPlace cmd/helm/dependency_build_test.go \ + substituteInPlace pkg/cmd/dependency_build_test.go \ --replace-fail "TestDependencyBuildCmd" "SkipDependencyBuildCmd" - substituteInPlace cmd/helm/dependency_update_test.go \ + substituteInPlace pkg/cmd/dependency_update_test.go \ --replace-fail "TestDependencyUpdateCmd" "SkipDependencyUpdateCmd" # skipping as test fails in sandbox - substituteInPlace cmd/helm/install_test.go \ + substituteInPlace pkg/cmd/install_test.go \ --replace-fail "TestInstall" "SkipInstall" # skipping as test fails in sandbox - substituteInPlace cmd/helm/pull_test.go \ + substituteInPlace pkg/cmd/pull_test.go \ --replace-fail "TestPullCmd" "SkipPullCmd" \ --replace-fail "TestPullWithCredentialsCmd" "SkipPullWithCredentialsCmd" '';