From 8b3fd7323d9df9793e6c8d608d8d6e148634e9ae Mon Sep 17 00:00:00 2001 From: Paul Meyer <49727155+katexochen@users.noreply.github.com> Date: Tue, 19 Dec 2023 08:39:54 +0100 Subject: [PATCH] k9s: fix vendorHash mismatch by using proxyVendor This fixes a vendor hash mismatch between darwin and linux. --- pkgs/applications/networking/cluster/k9s/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/networking/cluster/k9s/default.nix b/pkgs/applications/networking/cluster/k9s/default.nix index 4c10d4c243b4..36376f7887b2 100644 --- a/pkgs/applications/networking/cluster/k9s/default.nix +++ b/pkgs/applications/networking/cluster/k9s/default.nix @@ -20,7 +20,9 @@ buildGoModule rec { tags = [ "netgo" ]; - vendorHash = "sha256-Wn/9vIyw99BudhhTnoN81Np70VInV6uo7Sru64nhPgk="; + proxyVendor = true; + + vendorHash = "sha256-9w44gpaB2C/F7hTImjdeabWVgTU5AA/7OSJmAqayrzU="; # TODO investigate why some config tests are failing doCheck = !(stdenv.isDarwin && stdenv.isAarch64);