guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 768e80e9e4b587c01e2c11b5b90e93695de1909a
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Feb 7 23:46:52 2026 +0000
gnu: syncthing: Update to 2.0.14.
* gnu/packages/syncthing.scm (syncthing): Update to 2.0.14.
[arguments] <go>: Use default (go-1.24).
Change-Id: I101da338bf4f9c75a40204456d16c65a4924e7d6
---
gnu/packages/syncthing.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/syncthing.scm b/gnu/packages/syncthing.scm
index ad5f055bbc..60c950a1d1 100644
--- a/gnu/packages/syncthing.scm
+++ b/gnu/packages/syncthing.scm
@@ -50,7 +50,7 @@
(define-public syncthing
(package
(name "syncthing")
- (version "1.30.0")
+ (version "2.0.14")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/syncthing/syncthing"
@@ -58,7 +58,8 @@
"/syncthing-source-v" version ".tar.gz"))
(sha256
(base32
- "1fpwqbslw2jlhcg4dicdv6x6im3qwr4cbjdi58hh8g3mcqfff6zg"))))
+ "00isf0j9nf0752wrn79nh4aj5ij5gapv1kvhrg8ydmmw1gi6rhzy"))))
+ ;; TODO: Build from git, remove vendor.
(build-system go-build-system)
;; The primary Syncthing executable goes to "out", while the auxiliary
;; server programs and utility tools go to "utils". This reduces the size
@@ -66,7 +67,6 @@
(outputs '("out" "utils"))
(arguments
(list
- #:go go-1.23
#:modules '((srfi srfi-26) ; for cut
(guix build utils)
(guix build go-build-system))