Skip to content

Commit

Permalink
Nix: Fix vendorSha256 warning
Browse files Browse the repository at this point in the history
Fixes `trace: warning: `vendorSha256` is deprecated. Use `vendorHash`
instead`.
  • Loading branch information
supersven committed Sep 3, 2024
1 parent 5c06158 commit 679b4d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nix/pkgs/helm-mapkubeapis.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ buildGoModule rec {
sha256 = "sha256-OIom+fMjLkbYXbxCsISuihdr3CWjUnkucTnDfoix9B0=";
};

vendorSha256 = "sha256-jqVzBRlGFhDHaiSF9AArJdt4KRCiUqUuo0CnJUTbSfE=";
vendorHash = "sha256-jqVzBRlGFhDHaiSF9AArJdt4KRCiUqUuo0CnJUTbSfE=";

# NOTE: Remove the install and upgrade hooks.
postPatch = ''
Expand Down
2 changes: 1 addition & 1 deletion nix/pkgs/kubernetes-tools.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ buildGoModule rec {
hash = "sha256-7juoX4nFvQbIIbhTlnIYVUEYUJGwu+aKrpw4ltujjXI=";
};

vendorSha256 = null;
vendorHash = null;

doCheck = false;

Expand Down

0 comments on commit 679b4d4

Please sign in to comment.