aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/networking/syncthing
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-10-06 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2020-10-06 04:20:00 +0000
commit3a78da75ea7b03f8d0ea2b538ae337713a430878 (patch)
treebdd2e2b18f2c3f21f4c0d6c9b9d5deeb078fe0e3 /pkgs/applications/networking/syncthing
parent86e6adc799ef0dd9019002f623f733973b6e46dd (diff)
syncthing: 1.9.0 -> 1.10.0
https://github.com/syncthing/syncthing/releases/tag/v1.10.0
Diffstat (limited to 'pkgs/applications/networking/syncthing')
-rw-r--r--pkgs/applications/networking/syncthing/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/networking/syncthing/default.nix b/pkgs/applications/networking/syncthing/default.nix
index 7baff125bac0..6dd71ed4b4b6 100644
--- a/pkgs/applications/networking/syncthing/default.nix
+++ b/pkgs/applications/networking/syncthing/default.nix
@@ -3,17 +3,17 @@
let
common = { stname, target, postInstall ? "" }:
buildGoModule rec {
- version = "1.9.0";
+ version = "1.10.0";
name = "${stname}-${version}";
src = fetchFromGitHub {
owner = "syncthing";
repo = "syncthing";
rev = "v${version}";
- sha256 = "1p5wmcmv72hbd3dap9hqv4ryarsj8ljn833x9mcfgh8ff4k25qwr";
+ sha256 = "0wi8k248qr80vscb5qwh2ygiyy2am9hh6a8c1il1h2702ch2cd45";
};
- vendorSha256 = "1mwjfv0l2n21srxsh8w18my2j8diim91jlg00ailiq9fwnvxxn8c";
+ vendorSha256 = "0as1kn7bpgp5b82pf1bgr23az1qq8x85zr2zwgqsx57yjbc18658";
doCheck = false;
@@ -45,6 +45,7 @@ let
meta = with lib; {
homepage = "https://syncthing.net/";
description = "Open Source Continuous File Synchronization";
+ changelog = "https://github.com/syncthing/syncthing/releases/tag/v${version}";
license = licenses.mpl20;
maintainers = with maintainers; [ pshendry joko peterhoeg andrew-d ];
platforms = platforms.unix;