summary refs log tree commit diff
path: root/pkgs/applications/networking/syncthing
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2018-02-09 10:20:22 +0800
committerPeter Hoeg <peter@hoeg.com>2018-02-09 11:29:16 +0800
commit44d1f99a22dc4b2b8e70d831e2332eb32f8376fe (patch)
tree3b7183e4e8609705c8bbe0e5637fe3ad7859df84 /pkgs/applications/networking/syncthing
parent78a17f5765f24ae24ee87224dad16862451295d2 (diff)
downloadnixpkgs-44d1f99a22dc4b2b8e70d831e2332eb32f8376fe.tar
nixpkgs-44d1f99a22dc4b2b8e70d831e2332eb32f8376fe.tar.gz
nixpkgs-44d1f99a22dc4b2b8e70d831e2332eb32f8376fe.tar.bz2
nixpkgs-44d1f99a22dc4b2b8e70d831e2332eb32f8376fe.tar.lz
nixpkgs-44d1f99a22dc4b2b8e70d831e2332eb32f8376fe.tar.xz
nixpkgs-44d1f99a22dc4b2b8e70d831e2332eb32f8376fe.tar.zst
nixpkgs-44d1f99a22dc4b2b8e70d831e2332eb32f8376fe.zip
syncthing: 0.14.43 -> 0.14.44
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 1a79e31a05d..f5e8876e2b3 100644
--- a/pkgs/applications/networking/syncthing/default.nix
+++ b/pkgs/applications/networking/syncthing/default.nix
@@ -1,14 +1,14 @@
 { stdenv, lib, fetchFromGitHub, go, procps, removeReferencesTo }:
 
 stdenv.mkDerivation rec {
-  version = "0.14.43";
+  version = "0.14.44";
   name = "syncthing-${version}";
 
   src = fetchFromGitHub {
     owner  = "syncthing";
     repo   = "syncthing";
     rev    = "v${version}";
-    sha256 = "1n09zmp9dqrl3y0fa0l1gx6f09j9mm3xdf7b58y03znspsg7mxhi";
+    sha256 = "1gdkx6lbzmdz2hqc9slbq41rwgkxmdisnj0iywx4mppmc2b4v6wh";
   };
 
   buildInputs = [ go removeReferencesTo ];