summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorPeter Hoeg <peter@speartail.com>2016-10-06 13:27:47 +0800
committerPeter Hoeg <peter@speartail.com>2016-10-06 13:27:47 +0800
commit0d183b30d469c476dbceff60194bef8df61c0e44 (patch)
treeca327f11459d5e1daf7ccddb823e5558b29026ef /pkgs/applications
parent66d622fbd0f2561b841b629179ffb914eff8147f (diff)
downloadnixlib-0d183b30d469c476dbceff60194bef8df61c0e44.tar
nixlib-0d183b30d469c476dbceff60194bef8df61c0e44.tar.gz
nixlib-0d183b30d469c476dbceff60194bef8df61c0e44.tar.bz2
nixlib-0d183b30d469c476dbceff60194bef8df61c0e44.tar.lz
nixlib-0d183b30d469c476dbceff60194bef8df61c0e44.tar.xz
nixlib-0d183b30d469c476dbceff60194bef8df61c0e44.tar.zst
nixlib-0d183b30d469c476dbceff60194bef8df61c0e44.zip
syncthing: 0.14.7 -> 0.14.8
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 49b969e8f6bf..3d8733635ee0 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.7";
+  version = "0.14.8";
   name = "syncthing-${version}";
 
   src = fetchFromGitHub {
     owner  = "syncthing";
     repo   = "syncthing";
     rev    = "v${version}";
-    sha256 = "1mcn2vmv3hvp0ni9jxbjj3qp0l6ls07qmq33amhvjhpfafqzn279";
+    sha256 = "0zhxgl6pgf60x99cappdfzk7h23g37hlanh72bwypx7pwbvhc91l";
   };
 
   buildInputs = [ go ];