diff options
author | Leo Famulari <leo@famulari.name> | 2025-02-24 22:02:12 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2025-02-24 22:05:02 -0500 |
commit | 68cd38756b51d4abd8c796a5bcbbb9ea053eafde (patch) | |
tree | 7fbef3b7aee37a598b25a562d5fd042fbc6198e8 | |
parent | 03b0ca9e933440d0d198a91f09ac28cacbf6ac27 (diff) |
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 06d37f38606fabbace21e55ec7f2546b3ae5214f
* gnu/packages/syncthing.scm (syncthing)[arguments]: Build with go-1.23.
Change-Id: Ia3c31fa204ad0afc43cb3f7dc3012a2affd40825
-rw-r--r-- | gnu/packages/syncthing.scm | 3 |
1 files changed, 3 insertions, 0 deletions
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 |