summary refs log tree commit diff
diff options
context:
space:
mode:
authorPascal Wittmann <PascalWittmann@gmx.net>2015-06-10 14:25:45 +0200
committerPascal Wittmann <PascalWittmann@gmx.net>2015-06-10 14:25:45 +0200
commit8e63e9bfbe2790de93fb134397bcbd9b8c0e82c3 (patch)
tree405d674426fb8d781fecb1d92397b6bab41cb8ce
parent62d62b658835d675f483d1ff78517216f75bcc5d (diff)
parent8fc618503795a161ab6a261c8b4cac799b3f23b4 (diff)
downloadnixlib-8e63e9bfbe2790de93fb134397bcbd9b8c0e82c3.tar
nixlib-8e63e9bfbe2790de93fb134397bcbd9b8c0e82c3.tar.gz
nixlib-8e63e9bfbe2790de93fb134397bcbd9b8c0e82c3.tar.bz2
nixlib-8e63e9bfbe2790de93fb134397bcbd9b8c0e82c3.tar.lz
nixlib-8e63e9bfbe2790de93fb134397bcbd9b8c0e82c3.tar.xz
nixlib-8e63e9bfbe2790de93fb134397bcbd9b8c0e82c3.tar.zst
nixlib-8e63e9bfbe2790de93fb134397bcbd9b8c0e82c3.zip
Merge pull request #8266 from ctheune/submit/syncthing-0.11.8
Update syncthing to 0.11.8
-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 1e26e61161cc..30fda1e0facd 100644
--- a/pkgs/applications/networking/syncthing/default.nix
+++ b/pkgs/applications/networking/syncthing/default.nix
@@ -4,12 +4,12 @@ with goPackages;
 
 buildGoPackage rec {
   name = "syncthing-${version}";
-  version = "0.11.7";
+  version = "0.11.8";
   goPackagePath = "github.com/syncthing/syncthing";
   src = fetchgit {
     url = "git://github.com/syncthing/syncthing.git";
     rev = "refs/tags/v${version}";
-    sha256 = "7d928a255c61c7b89d460cc70c79bd8e85bef3e919c157f59d5709fef4153c8d";
+    sha256 = "fed98ac47fd84aecee7770dd59e5e68c5bc429d50b361f13b9ea2e28c3be62cf";
   };
 
   subPackages = [ "cmd/syncthing" ];
@@ -26,7 +26,7 @@ buildGoPackage rec {
     homepage = http://syncthing.net/;
     description = "Replaces Dropbox and BitTorrent Sync with something open, trustworthy and decentralized";
     license = lib.licenses.mit;
-    maintainers = with lib.maintainers; [ matejc ];
+    maintainers = with lib.maintainers; [ matejc theuni ];
     platforms = with lib.platforms; unix;
   };
 }