summary refs log tree commit diff
path: root/pkgs/applications/misc/synergy
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2014-12-17 13:17:19 +0100
committeraszlig <aszlig@redmoonstudios.org>2014-12-18 14:06:12 +0100
commit38d639745edf72c76498412850af9de1e7ec79c8 (patch)
treedb51ebc3310581af35ba42dd29637d449647c701 /pkgs/applications/misc/synergy
parent14ef3446e163b3afecf7d676282cc496ec7c430d (diff)
downloadnixlib-38d639745edf72c76498412850af9de1e7ec79c8.tar
nixlib-38d639745edf72c76498412850af9de1e7ec79c8.tar.gz
nixlib-38d639745edf72c76498412850af9de1e7ec79c8.tar.bz2
nixlib-38d639745edf72c76498412850af9de1e7ec79c8.tar.lz
nixlib-38d639745edf72c76498412850af9de1e7ec79c8.tar.xz
nixlib-38d639745edf72c76498412850af9de1e7ec79c8.tar.zst
nixlib-38d639745edf72c76498412850af9de1e7ec79c8.zip
synergy: Update to new upstream version 1.6.2.
Fixes the following bugs:

 * Helper tool crashes when service checks elevation state
 * Zeroconf on server advertises bogus IP address
 * Drag file causes client crash on Mac (10.10)

Introduces the following enhancements:

 * Optional Bonjour requirement for Windows
 * Automatic Bonjour download and install
 * Auto-config available servers combo box
 * More user friendly dialog when client is detected
 * Minimize auto config message box usage
 * Firewall exception for GUI (needed for Bonjour)
 * Consistent naming for auto config feature

Full changelog with bug IDs can be found at:

http://synergy-project.org/changelog/

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/applications/misc/synergy')
-rw-r--r--pkgs/applications/misc/synergy/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/misc/synergy/default.nix b/pkgs/applications/misc/synergy/default.nix
index 2a518b9d7cc9..746b5e5ef465 100644
--- a/pkgs/applications/misc/synergy/default.nix
+++ b/pkgs/applications/misc/synergy/default.nix
@@ -7,13 +7,13 @@ with stdenv.lib;
 
 stdenv.mkDerivation rec {
   name = "synergy-${version}";
-  version = "1.6.1";
+  version = "1.6.2";
 
   src = fetchFromGitHub {
     owner = "synergy";
     repo = "synergy";
-    rev = "1.6.1";
-    sha256 = "1043101c4phv1nbxiqp2jn1jhgzspv9q6v75z0kfzwgii5n5xq1c";
+    rev = version;
+    sha256 = "0himg6c50x5wz5nc6rgd54rph1w6nin6j9f08pa4spsxn9b5h8ks";
   };
 
   patches = optional stdenv.isLinux ./cryptopp.patch;