From e23bacc84412715346d68bcde6448fa9e46d8d16 Mon Sep 17 00:00:00 2001 From: birkhoff Date: Thu, 5 Dec 2024 05:34:18 +0100 Subject: [PATCH] nexttrace: build with go 1.22 to fix darwin build (#352581) use go 1.22 to build nexttrace This project is meant to be build on Go 1.22 instead of any later versions References: - https://github.com/nxtrace/NTrace-core/issues/270 - https://github.com/nxtrace/NTrace-core/issues/257 --- pkgs/by-name/ne/nexttrace/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ne/nexttrace/package.nix b/pkgs/by-name/ne/nexttrace/package.nix index f3051ba451f2..f82444e68feb 100644 --- a/pkgs/by-name/ne/nexttrace/package.nix +++ b/pkgs/by-name/ne/nexttrace/package.nix @@ -1,6 +1,6 @@ -{ lib, buildGoModule, fetchFromGitHub }: +{ lib, buildGo122Module, fetchFromGitHub }: -buildGoModule rec { +buildGo122Module rec { pname = "nexttrace"; version = "1.3.5";