summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2018-04-05 08:10:33 +0800
committerPeter Hoeg <peter@hoeg.com>2018-04-05 08:19:11 +0800
commitc011843b0cfd3b1f8dd73bbfc06bc8ae3bc17715 (patch)
treec3e411a446bf62c75ea594f55e49e9fd0a622a01 /pkgs/applications
parent72f3e417acaf895ab64c25624ea5ed088cb6dca2 (diff)
downloadnixlib-c011843b0cfd3b1f8dd73bbfc06bc8ae3bc17715.tar
nixlib-c011843b0cfd3b1f8dd73bbfc06bc8ae3bc17715.tar.gz
nixlib-c011843b0cfd3b1f8dd73bbfc06bc8ae3bc17715.tar.bz2
nixlib-c011843b0cfd3b1f8dd73bbfc06bc8ae3bc17715.tar.lz
nixlib-c011843b0cfd3b1f8dd73bbfc06bc8ae3bc17715.tar.xz
nixlib-c011843b0cfd3b1f8dd73bbfc06bc8ae3bc17715.tar.zst
nixlib-c011843b0cfd3b1f8dd73bbfc06bc8ae3bc17715.zip
syncthing: 0.14.45 -> 0.14.46
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 d79396f3b1d7..531a1d5d0a17 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.45";
+      version = "0.14.46";
       name = "${stname}-${version}";
 
       src = fetchFromGitHub {
         owner  = "syncthing";
         repo   = "syncthing";
         rev    = "v${version}";
-        sha256 = "0hhldmvsbvkaj0x6af7c41zq5mbzcymv5xxmwvb4h5zbz49z9vzl";
+        sha256 = "0lv8n5id40iy2gfccy8g45fjzlnbnvi7nlvj25pri22dq2bd5svm";
       };
 
       inherit patches;