1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Syncthing: Build with Go 1.23.

This fixes a bug where Syncthing would fail to connect to any devices:

<https://issues.guix.gnu.org/75959#26>

This is a followup to commit 06d37f3860

* gnu/packages/syncthing.scm (syncthing)[arguments]: Build with go-1.23.

Change-Id: Ia3c31fa204ad0afc43cb3f7dc3012a2affd40825
This commit is contained in:
Leo Famulari
2025-02-24 22:02:12 -05:00
parent 03b0ca9e93
commit 68cd38756b

View File

@@ -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