summary refs log tree commit diff
path: root/pkgs/applications/networking/syncthing
diff options
context:
space:
mode:
authorkc1212 <kc1212@users.noreply.github.com>2016-07-18 22:46:47 +1200
committerFranz Pletz <fpletz@fnordicwalking.de>2016-07-18 12:46:47 +0200
commit05274e53f8fc84df77ee64e853e73bd925eca819 (patch)
treeb2657fa5f963d3facd2c1c26ff819c4e7e5aa68e /pkgs/applications/networking/syncthing
parent3d69653d6b698928f225418e4a5e1b4f621b4dbe (diff)
downloadnixpkgs-05274e53f8fc84df77ee64e853e73bd925eca819.tar
nixpkgs-05274e53f8fc84df77ee64e853e73bd925eca819.tar.gz
nixpkgs-05274e53f8fc84df77ee64e853e73bd925eca819.tar.bz2
nixpkgs-05274e53f8fc84df77ee64e853e73bd925eca819.tar.lz
nixpkgs-05274e53f8fc84df77ee64e853e73bd925eca819.tar.xz
nixpkgs-05274e53f8fc84df77ee64e853e73bd925eca819.tar.zst
nixpkgs-05274e53f8fc84df77ee64e853e73bd925eca819.zip
syncthing: 0.13.9 -> 0.13.10 (#16912)
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 87d74aeafd8..b6d318011aa 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.9";
+  version = "0.13.10";
   name = "syncthing-${version}";
 
   src = fetchgit {
     url = https://github.com/syncthing/syncthing;
     rev = "refs/tags/v${version}";
-    sha256 = "1ah3a86rjfqlx4mqyvn8j3r806i65mzhs5xnfg4aakzmwpr5zpx0";
+    sha256 = "07q3j6mnrza719rnvbkdsmvlkyr2pch5sj2l204m5iy5mxaghpx7";
   };
 
   buildInputs = [ go ];