Skip to content

Commit

Permalink
tanka: 0.27.1 -> 0.28.0 (NixOS#340060)
Browse files Browse the repository at this point in the history
tanka: disable GOWORK

Co-authored-by: aleksana <me@aleksana.moe>
  • Loading branch information
theSuess and Aleksanaa committed Sep 21, 2024
1 parent d203fb0 commit bde47c6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions pkgs/applications/networking/cluster/tanka/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,20 @@

buildGoModule rec {
pname = "tanka";
version = "0.27.1";
version = "0.28.0";

src = fetchFromGitHub {
owner = "grafana";
repo = pname;
rev = "v${version}";
sha256 = "sha256-4ChTYwRp9R8U97hH1Bgrxr5a/5IoWRAmFgJbD7oJpO4=";
sha256 = "sha256-MDZXnI0FAeQJI7GbPT5/EB4ldOtGSnFEbojXzE9ll+Q=";
};

vendorHash = "sha256-u2l3cX8PKHUCPkHuCOyED2LLWygYCDJEhfTjycEBzHI=";
vendorHash = "sha256-N4zGZ+fYQA7UdPI8ie55gG3FnFrI/XvyJJiZ3D40qlQ=";

doCheck = false;
# Required for versions >= 0.28 as they introduce a gowork.sum file. This is only used for tests so we can safely disable GOWORK
env.GOWORK = "off";

subPackages = [ "cmd/tk" ];

Expand Down

0 comments on commit bde47c6

Please sign in to comment.