summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2018-06-06 11:25:13 +0800
committerGitHub <noreply@github.com>2018-06-06 11:25:13 +0800
commite624ebf2332cbda46427b5d5821cd0669f31b0de (patch)
tree67556c7102efec1e1f64d28eb5ab9994efea3a0a /pkgs/applications
parent2e20d6fb60b6270fa17e6133afa2e07870600c0f (diff)
parentf2d7142b33168aafde2bc030d2a31107b52aef54 (diff)
downloadnixlib-e624ebf2332cbda46427b5d5821cd0669f31b0de.tar
nixlib-e624ebf2332cbda46427b5d5821cd0669f31b0de.tar.gz
nixlib-e624ebf2332cbda46427b5d5821cd0669f31b0de.tar.bz2
nixlib-e624ebf2332cbda46427b5d5821cd0669f31b0de.tar.lz
nixlib-e624ebf2332cbda46427b5d5821cd0669f31b0de.tar.xz
nixlib-e624ebf2332cbda46427b5d5821cd0669f31b0de.tar.zst
nixlib-e624ebf2332cbda46427b5d5821cd0669f31b0de.zip
Merge pull request #41513 from r-ryantm/auto-update/syncthing
syncthing: 0.14.47 -> 0.14.48
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 e1a2cf8d1716..25d482fd9b06 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.47";
+      version = "0.14.48";
       name = "${stname}-${version}";
 
       src = fetchFromGitHub {
         owner  = "syncthing";
         repo   = "syncthing";
         rev    = "v${version}";
-        sha256 = "1md835c13f3c9bknnm6pxn0r8k8g2wg56zfav96bpnpk4aqx41bh";
+        sha256 = "10jls0z3y081fq097xarplzv5sz076ibhawzm65bq695f6s5sdzw";
       };
 
       inherit patches;