summary refs log tree commit diff
path: root/pkgs/applications/networking/syncthing
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2017-03-21 09:39:50 +0800
committerPeter Hoeg <peter@hoeg.com>2017-03-21 09:44:13 +0800
commit1cd8addae145ea95173f4b319e5f53c0ec6abd7f (patch)
treeb1a32d5bec6f64e13aa459eb58336470270de6c3 /pkgs/applications/networking/syncthing
parent8eabb34e5f336b262e918e2398bfd04d2a6c7a59 (diff)
downloadnixpkgs-1cd8addae145ea95173f4b319e5f53c0ec6abd7f.tar
nixpkgs-1cd8addae145ea95173f4b319e5f53c0ec6abd7f.tar.gz
nixpkgs-1cd8addae145ea95173f4b319e5f53c0ec6abd7f.tar.bz2
nixpkgs-1cd8addae145ea95173f4b319e5f53c0ec6abd7f.tar.lz
nixpkgs-1cd8addae145ea95173f4b319e5f53c0ec6abd7f.tar.xz
nixpkgs-1cd8addae145ea95173f4b319e5f53c0ec6abd7f.tar.zst
nixpkgs-1cd8addae145ea95173f4b319e5f53c0ec6abd7f.zip
syncthing: 0.14.24 -> 0.14.25
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 2cb4f0a5922..0f696d78855 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.24";
+  version = "0.14.25";
   name = "syncthing-${version}";
 
   src = fetchFromGitHub {
     owner  = "syncthing";
     repo   = "syncthing";
     rev    = "v${version}";
-    sha256 = "15jjk49ibry7crc3sw5zg09zsm5ir0ph5c0f3acas66wd02rnvl1";
+    sha256 = "1if92y32h1wp5sz2lnlw5fqibzbik7bklq850j9wcxfvr6ahck0w";
   };
 
   buildInputs = [ go removeReferencesTo ];