summary refs log tree commit diff
path: root/pkgs/applications/networking/syncthing
diff options
context:
space:
mode:
authorR. RyanTM <ryantm+bot@ryantm.com>2018-06-05 15:55:06 -0700
committerR. RyanTM <ryantm+bot@ryantm.com>2018-06-05 15:55:06 -0700
commitf2d7142b33168aafde2bc030d2a31107b52aef54 (patch)
tree25813820252afcd2343123c7fe26c4b1a8b70be1 /pkgs/applications/networking/syncthing
parent8414fa2d6bb1249ed77565ff6b9f312fd52917da (diff)
syncthing: 0.14.47 -> 0.14.48
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/syncthing/versions.

These checks were done:

- built on NixOS
- /nix/store/h4ya458k1kcphch5pxzm16v38l07qv7r-syncthing-0.14.48/bin/syncthing passed the binary check.
- 1 of 1 passed binary check by having a zero exit code.
- 0 of 1 passed binary check by having the new version present in output.
- found 0.14.48 with grep in /nix/store/h4ya458k1kcphch5pxzm16v38l07qv7r-syncthing-0.14.48
- directory tree listing: https://gist.github.com/ba1db3154a5999b389aae4932af21f2b
- du listing: https://gist.github.com/a469360f23a2909c7550178ab7a1d0f2
Diffstat (limited to 'pkgs/applications/networking/syncthing')
-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 e1a2cf8d1716a..25d482fd9b066 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;