summaryrefslogtreecommitdiff
path: root/gnu/packages/syncthing.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-02-07 23:46:52 +0000
committerAndreas Enge <andreas@enge.fr>2026-02-15 14:17:46 +0100
commit5a54a6f57a683cba486fda40ee699449b1eb8d89 (patch)
tree6fa2bd0af1ade93172dc5a383affa1a3c4f441a4 /gnu/packages/syncthing.scm
parent336f242c7812853a5ad5742ade7eeb9e5a75eace (diff)
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
Diffstat (limited to 'gnu/packages/syncthing.scm')
-rw-r--r--gnu/packages/syncthing.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/syncthing.scm b/gnu/packages/syncthing.scm
index 74c9d8d31eb..b4f64ad88e3 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))