summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2017-06-14 10:22:31 +0800
committerPeter Hoeg <peter@hoeg.com>2017-06-14 10:22:31 +0800
commitfd2976bb20afed977fee27562b7454abbc402121 (patch)
tree11c7609e477af75b3ee2f9878055e7a27bf9993a /pkgs/applications/networking
parent3b1c4fce4fc18cd8ce51fc895527ecfa273d2761 (diff)
downloadnixlib-fd2976bb20afed977fee27562b7454abbc402121.tar
nixlib-fd2976bb20afed977fee27562b7454abbc402121.tar.gz
nixlib-fd2976bb20afed977fee27562b7454abbc402121.tar.bz2
nixlib-fd2976bb20afed977fee27562b7454abbc402121.tar.lz
nixlib-fd2976bb20afed977fee27562b7454abbc402121.tar.xz
nixlib-fd2976bb20afed977fee27562b7454abbc402121.tar.zst
nixlib-fd2976bb20afed977fee27562b7454abbc402121.zip
syncthing: 0.14.29 -> 0.14.30
Diffstat (limited to 'pkgs/applications/networking')
-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 87018c1e08e9..e0ba43986e3e 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.29";
+  version = "0.14.30";
   name = "syncthing-${version}";
 
   src = fetchFromGitHub {
     owner  = "syncthing";
     repo   = "syncthing";
     rev    = "v${version}";
-    sha256 = "01q0xlixjvmzs0acrg54b07fp68sa5axh1wb4lz25mmxfjl04v1d";
+    sha256 = "14f2v8i8ga9vii015vbx70k1vd85ac0ygykz2z614ii932g5lfdr";
   };
 
   buildInputs = [ go removeReferencesTo ];