summary refs log tree commit diff
path: root/pkgs/applications/misc/synergy
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2013-10-23 16:48:47 +0200
committeraszlig <aszlig@redmoonstudios.org>2013-10-23 17:16:17 +0200
commit8a0b424296cc07200ce7fcea6128b269046c3704 (patch)
tree14722059c1b96c19959b12db89ec385df42342cd /pkgs/applications/misc/synergy
parentf182fdf6ed3acf820a5f619eda9bffee1ecd1c46 (diff)
downloadnixpkgs-8a0b424296cc07200ce7fcea6128b269046c3704.tar
nixpkgs-8a0b424296cc07200ce7fcea6128b269046c3704.tar.gz
nixpkgs-8a0b424296cc07200ce7fcea6128b269046c3704.tar.bz2
nixpkgs-8a0b424296cc07200ce7fcea6128b269046c3704.tar.lz
nixpkgs-8a0b424296cc07200ce7fcea6128b269046c3704.tar.xz
nixpkgs-8a0b424296cc07200ce7fcea6128b269046c3704.tar.zst
nixpkgs-8a0b424296cc07200ce7fcea6128b269046c3704.zip
synergy: Update to new upstream version 1.4.15.
This is a bugfix release which fixes the following bugs:

 * Synergy Service - Error 87: The parameter is incorrect.
 * Option not supported on Linux: --enable-drag-drop (server not
   starting)

Bug IDs and the announcement can be found at:

http://synergy-foss.org/blog/synergy-1-4-15-released/

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/applications/misc/synergy')
-rw-r--r--pkgs/applications/misc/synergy/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/misc/synergy/default.nix b/pkgs/applications/misc/synergy/default.nix
index 72282ad0f3e..c01d67943e5 100644
--- a/pkgs/applications/misc/synergy/default.nix
+++ b/pkgs/applications/misc/synergy/default.nix
@@ -7,11 +7,11 @@ assert !stdenv.isLinux -> unzip != null;
 with stdenv.lib;
 
 stdenv.mkDerivation rec {
-  name = "synergy-1.4.14";
+  name = "synergy-1.4.15";
 
   src = fetchurl {
     url = "http://synergy.googlecode.com/files/${name}-Source.tar.gz";
-    sha256 = "1sprg3yb0gjhl2927l4c5nymmqhg318ar6dpki8dr42dgvx3d2ir";
+    sha256 = "0l1mxxky9hacyva0npzkgkwg4wkmihzq3abdrds0w5f6is44adv4";
   };
 
   patches = optional stdenv.isLinux ./cryptopp.patch;