From 68cd38756b51d4abd8c796a5bcbbb9ea053eafde Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Mon, 24 Feb 2025 22:02:12 -0500 Subject: [PATCH] gnu: Syncthing: Build with Go 1.23. This fixes a bug where Syncthing would fail to connect to any devices: This is a followup to commit 06d37f38606fabbace21e55ec7f2546b3ae5214f * gnu/packages/syncthing.scm (syncthing)[arguments]: Build with go-1.23. Change-Id: Ia3c31fa204ad0afc43cb3f7dc3012a2affd40825 --- gnu/packages/syncthing.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/packages/syncthing.scm b/gnu/packages/syncthing.scm index fc040e56ea..0322c612e3 100644 --- a/gnu/packages/syncthing.scm +++ b/gnu/packages/syncthing.scm @@ -38,6 +38,7 @@ #:use-module (gnu packages freedesktop) #:use-module (gnu packages glib) #:use-module (gnu packages gnome) + #:use-module (gnu packages golang) #:use-module (gnu packages golang-build) #:use-module (gnu packages golang-compression) #:use-module (gnu packages gtk) @@ -68,6 +69,8 @@ (guix build utils) (guix build go-build-system)) #:import-path "github.com/syncthing/syncthing" + ;; Check 'go.mod' in the source distribution for the required version of Go. + #:go go-1.23 ;; We don't need to install the source code for end-user applications. #:install-source? #f #:phases