diff --git a/pkgs/by-name/ne/netbird/package.nix b/pkgs/by-name/ne/netbird/package.nix index 1221a3f558f0..d3824f6c659e 100644 --- a/pkgs/by-name/ne/netbird/package.nix +++ b/pkgs/by-name/ne/netbird/package.nix @@ -3,7 +3,7 @@ lib, nixosTests, nix-update-script, - buildGo125Module, + buildGoModule, fetchFromGitHub, installShellFiles, pkg-config, @@ -65,20 +65,18 @@ let }; component = availableComponents.${componentName}; in -# Vendored gvisor has a build-tag conflict with Go 1.26 (netbirdio/netbird#5290). -# TODO: revert to 'buildGoModule' when a release includes netbirdio/netbird#5447. -buildGo125Module (finalAttrs: { +buildGoModule (finalAttrs: { pname = "netbird-${componentName}"; - version = "0.65.3"; + version = "0.67.0"; src = fetchFromGitHub { owner = "netbirdio"; repo = "netbird"; tag = "v${finalAttrs.version}"; - hash = "sha256-7OLCrmgkRViFhzxhyuRZGua6Bu8ntWdYNNlEpC0tB+o="; + hash = "sha256-5Q90bEAXTnvkEHcsheohu9wdwZRFIoLnqBNzjotFz54="; }; - vendorHash = "sha256-zMjbciItpzzCmUoLZy+gEF9etQy2dRmZrRVg4iSC0+o="; + vendorHash = "sha256-6qYS2jXjfPczAfv+g79JsTcEJR9FniAVjW52Yi/g42M="; nativeBuildInputs = [ installShellFiles ] ++ lib.optional (componentName == "ui") pkg-config;