summary refs log tree commit diff
path: root/pkgs/applications/networking/syncthing
diff options
context:
space:
mode:
authorPeter Hoeg <peter@speartail.com>2016-07-30 11:32:43 +0800
committerPeter Hoeg <peter@speartail.com>2016-07-30 11:32:43 +0800
commit10deae8a57927f33062302bd4900e245babc6c09 (patch)
tree8ca0e73aee3b021d83fc2fb732b2accbe87eeeec /pkgs/applications/networking/syncthing
parent40b838b94d906793d160fa17f817157fc684cdbe (diff)
downloadnixpkgs-10deae8a57927f33062302bd4900e245babc6c09.tar
nixpkgs-10deae8a57927f33062302bd4900e245babc6c09.tar.gz
nixpkgs-10deae8a57927f33062302bd4900e245babc6c09.tar.bz2
nixpkgs-10deae8a57927f33062302bd4900e245babc6c09.tar.lz
nixpkgs-10deae8a57927f33062302bd4900e245babc6c09.tar.xz
nixpkgs-10deae8a57927f33062302bd4900e245babc6c09.tar.zst
nixpkgs-10deae8a57927f33062302bd4900e245babc6c09.zip
syncthing: 0.14.2 -> 0.14.3
Diffstat (limited to 'pkgs/applications/networking/syncthing')
-rw-r--r--pkgs/applications/networking/syncthing/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/networking/syncthing/default.nix b/pkgs/applications/networking/syncthing/default.nix
index 035bfd406af..2a02e0e657c 100644
--- a/pkgs/applications/networking/syncthing/default.nix
+++ b/pkgs/applications/networking/syncthing/default.nix
@@ -1,14 +1,14 @@
 { stdenv, fetchFromGitHub, go }:
 
 stdenv.mkDerivation rec {
-  version = "0.14.2";
+  version = "0.14.3";
   name = "syncthing-${version}";
 
   src = fetchFromGitHub {
     owner = "syncthing";
     repo = "syncthing";
     rev = "v${version}";
-    sha256 = "0is4f1r3im2bbmbca9fafzxffikxaf86vd6f851831fk5wi4pzw9";
+    sha256 = "114i0911h3q6dn3j9x2qcm5lzpqclvrpf5vk87qpqp9qy62jp3az";
   };
 
   buildInputs = [ go ];
@@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
     homepage = https://www.syncthing.net/;
     description = "Open Source Continuous File Synchronization";
     license = stdenv.lib.licenses.mpl20;
-    maintainers = with stdenv.lib.maintainers; [ pshendry joko ];
+    maintainers = with stdenv.lib.maintainers; [ pshendry joko peterhoeg ];
     platforms = with stdenv.lib.platforms; linux ++ freebsd ++ openbsd ++ netbsd;
   };
 }