mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: Syncthing: Update to 1.18.4.
* gnu/packages/syncthing.scm (syncthing): Update to 1.18.4. [arguments]: Build with Go 1.17.
This commit is contained in:
parent
30c776a6a8
commit
4e282bc934
1 changed files with 3 additions and 2 deletions
|
@ -45,7 +45,7 @@ (define-module (gnu packages syncthing)
|
||||||
(define-public syncthing
|
(define-public syncthing
|
||||||
(package
|
(package
|
||||||
(name "syncthing")
|
(name "syncthing")
|
||||||
(version "1.16.1")
|
(version "1.18.4")
|
||||||
; XXX After the go-build-system can use "Go modules", stop using bundled
|
; XXX After the go-build-system can use "Go modules", stop using bundled
|
||||||
; dependencies for Syncthing.
|
; dependencies for Syncthing.
|
||||||
(source (origin
|
(source (origin
|
||||||
|
@ -55,7 +55,7 @@ (define-public syncthing
|
||||||
"/syncthing-source-v" version ".tar.gz"))
|
"/syncthing-source-v" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0m5k37sp3px8acs3y9an5wzy1wbcbdvqq74jy0pwzfk4bjbr999j"))))
|
"00kw1j2qi5ylbycv43n5177r3a3651qxhds927x6cz0a2b7qac8n"))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
;; The primary Syncthing executable goes to "out", while the auxiliary
|
;; The primary Syncthing executable goes to "out", while the auxiliary
|
||||||
;; server programs and utility tools go to "utils". This reduces the size
|
;; server programs and utility tools go to "utils". This reduces the size
|
||||||
|
@ -65,6 +65,7 @@ (define-public syncthing
|
||||||
`(#:modules ((srfi srfi-26) ; for cut
|
`(#:modules ((srfi srfi-26) ; for cut
|
||||||
(guix build utils)
|
(guix build utils)
|
||||||
(guix build go-build-system))
|
(guix build go-build-system))
|
||||||
|
#:go ,go-1.17
|
||||||
#:import-path "github.com/syncthing/syncthing"
|
#:import-path "github.com/syncthing/syncthing"
|
||||||
;; We don't need to install the source code for end-user applications.
|
;; We don't need to install the source code for end-user applications.
|
||||||
#:install-source? #f
|
#:install-source? #f
|
||||||
|
|
Loading…
Reference in a new issue