summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-10-02 20:19:55 +0100
committerGitHub <noreply@github.com>2018-10-02 20:19:55 +0100
commit1643967b8dc3d0d618a9ebc960996bf807dbbf4c (patch)
tree50dac3a7f99706960f80d595985c4001fba7b5e6 /pkgs/applications/networking
parent83f6cf82c57ef2cec7df1fff81ca5dff791e44d3 (diff)
parent2671acc47194bb2c9c29790ba0712adc58a8f225 (diff)
downloadnixlib-1643967b8dc3d0d618a9ebc960996bf807dbbf4c.tar
nixlib-1643967b8dc3d0d618a9ebc960996bf807dbbf4c.tar.gz
nixlib-1643967b8dc3d0d618a9ebc960996bf807dbbf4c.tar.bz2
nixlib-1643967b8dc3d0d618a9ebc960996bf807dbbf4c.tar.lz
nixlib-1643967b8dc3d0d618a9ebc960996bf807dbbf4c.tar.xz
nixlib-1643967b8dc3d0d618a9ebc960996bf807dbbf4c.tar.zst
nixlib-1643967b8dc3d0d618a9ebc960996bf807dbbf4c.zip
Merge pull request #47668 from jluttine/syncthing-0.14.51
syncthing: 0.14.50 -> 0.14.51
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 b7bad13a30d8..86c8b6db2c47 100644
--- a/pkgs/applications/networking/syncthing/default.nix
+++ b/pkgs/applications/networking/syncthing/default.nix
@@ -3,14 +3,14 @@
 let
   common = { stname, target, patches ? [], postInstall ? "" }:
     stdenv.mkDerivation rec {
-      version = "0.14.50";
+      version = "0.14.51";
       name = "${stname}-${version}";
 
       src = fetchFromGitHub {
         owner  = "syncthing";
         repo   = "syncthing";
         rev    = "v${version}";
-        sha256 = "10lilw20mq1zshysb9zrszcpl4slyyxvnbxfqk04nhz0b1gmm9ri";
+        sha256 = "1ycly3vh10s04pk0fk9hb0my7w5b16dfgmnk1mi0zjylcii3yzi5";
       };
 
       inherit patches;