about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorJoachim F <joachifm@users.noreply.github.com>2016-08-24 20:19:13 +0200
committerGitHub <noreply@github.com>2016-08-24 20:19:13 +0200
commit20b4c8726a6ea73b72b1f3026995ace4e49d1693 (patch)
tree609de9e9e61acaeda4b95a505955a092ef5c1e74 /pkgs/applications
parent7e48ecc0c00086455268960b6bc444efb4320821 (diff)
parent6723f899f1a22e1cb2f93b28ef953986566c340f (diff)
Merge pull request #17948 from peterhoeg/st_0145
syncthing: 0.14.4 -> 0.14.5
Diffstat (limited to 'pkgs/applications')
-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 bd156680d4bf4..276550e3afd15 100644
--- a/pkgs/applications/networking/syncthing/default.nix
+++ b/pkgs/applications/networking/syncthing/default.nix
@@ -1,14 +1,14 @@
 { stdenv, fetchFromGitHub, go }:
 
 stdenv.mkDerivation rec {
-  version = "0.14.4";
+  version = "0.14.5";
   name = "syncthing-${version}";
 
   src = fetchFromGitHub {
     owner = "syncthing";
     repo = "syncthing";
     rev = "v${version}";
-    sha256 = "0i1pgwy7vn2hfcqa7dvrrc40hzrzn47alvnxm058f2hhxjis3fdw";
+    sha256 = "172ca3xgc3dp9yiqm3fmq696615jnclgfg521sh5mk78na1r4mgz";
   };
 
   buildInputs = [ go ];