about summary refs log tree commit diff
path: root/pkgs/applications/networking/syncthing
diff options
context:
space:
mode:
authorPeter Hoeg <peter@speartail.com>2016-06-15 12:59:41 +0800
committerPeter Hoeg <peter@speartail.com>2016-06-15 12:59:41 +0800
commit54e806e690bb3e124dff45ef31560cfac8f5501e (patch)
treeca635becdd37ad6239aa87f6f6e8a07db85cd487 /pkgs/applications/networking/syncthing
parent48de566e545c93f12052419a16914c8e887c21e4 (diff)
downloadnixlib-54e806e690bb3e124dff45ef31560cfac8f5501e.tar
nixlib-54e806e690bb3e124dff45ef31560cfac8f5501e.tar.gz
nixlib-54e806e690bb3e124dff45ef31560cfac8f5501e.tar.bz2
nixlib-54e806e690bb3e124dff45ef31560cfac8f5501e.tar.lz
nixlib-54e806e690bb3e124dff45ef31560cfac8f5501e.tar.xz
nixlib-54e806e690bb3e124dff45ef31560cfac8f5501e.tar.zst
nixlib-54e806e690bb3e124dff45ef31560cfac8f5501e.zip
syncthing: 0.13.4 -> 0.13.7
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 83e5f2bd3289..40b3cb6fcce5 100644
--- a/pkgs/applications/networking/syncthing/default.nix
+++ b/pkgs/applications/networking/syncthing/default.nix
@@ -1,13 +1,13 @@
 { stdenv, fetchgit, go }:
 
 stdenv.mkDerivation rec {
-  version = "0.13.4";
+  version = "0.13.7";
   name = "syncthing-${version}";
 
   src = fetchgit {
     url = https://github.com/syncthing/syncthing;
     rev = "refs/tags/v${version}";
-    sha256 = "0aa0nqi0gmka5r5dzph4g51jlsy7w5q4ri8f4gy3qnma4pgp7pg2";
+    sha256 = "0n1yqaaag4l30i6zqb74z6f800xjvj9zvprb12nl9xlm5swrwrkz";
   };
 
   buildInputs = [ go ];