about summary refs log tree commit diff
path: root/pkgs/applications/networking/syncthing
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2017-04-09 23:19:20 +0800
committerPeter Hoeg <peter@hoeg.com>2017-04-10 00:36:05 +0800
commitb520bed83442a5c5a1853f62f1bc869051379efa (patch)
treef68c8311fdbc24c5740ecb80daf4c44b70cd5908 /pkgs/applications/networking/syncthing
parent282bc88093393e4dcfca68528d4a9d4280a08827 (diff)
downloadnixlib-b520bed83442a5c5a1853f62f1bc869051379efa.tar
nixlib-b520bed83442a5c5a1853f62f1bc869051379efa.tar.gz
nixlib-b520bed83442a5c5a1853f62f1bc869051379efa.tar.bz2
nixlib-b520bed83442a5c5a1853f62f1bc869051379efa.tar.lz
nixlib-b520bed83442a5c5a1853f62f1bc869051379efa.tar.xz
nixlib-b520bed83442a5c5a1853f62f1bc869051379efa.tar.zst
nixlib-b520bed83442a5c5a1853f62f1bc869051379efa.zip
syncthing: 0.14.25 -> 0.14.26
Diffstat (limited to 'pkgs/applications/networking/syncthing')
-rw-r--r--pkgs/applications/networking/syncthing/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/syncthing/default.nix b/pkgs/applications/networking/syncthing/default.nix
index 0f696d788552..81c459ff15a3 100644
--- a/pkgs/applications/networking/syncthing/default.nix
+++ b/pkgs/applications/networking/syncthing/default.nix
@@ -1,14 +1,14 @@
 { stdenv, lib, fetchFromGitHub, go, pkgs, removeReferencesTo }:
 
 stdenv.mkDerivation rec {
-  version = "0.14.25";
+  version = "0.14.26";
   name = "syncthing-${version}";
 
   src = fetchFromGitHub {
     owner  = "syncthing";
     repo   = "syncthing";
     rev    = "v${version}";
-    sha256 = "1if92y32h1wp5sz2lnlw5fqibzbik7bklq850j9wcxfvr6ahck0w";
+    sha256 = "1ny41fj8gg555awqcsyvsjs1zghjlwciwhyxjh5ly16hzaixn499";
   };
 
   buildInputs = [ go removeReferencesTo ];