summary refs log tree commit diff
path: root/pkgs/applications/misc/synergy
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2014-09-03 12:52:08 +0200
committeraszlig <aszlig@redmoonstudios.org>2014-09-03 12:52:08 +0200
commitfc434d1f5c12511d48bff5c10a79ca707915b231 (patch)
treee555667b26778276c4d30299b2e6e22dc0bab616 /pkgs/applications/misc/synergy
parent0f6d45f6b459a9e198354c636a99747104961a21 (diff)
downloadnixlib-fc434d1f5c12511d48bff5c10a79ca707915b231.tar
nixlib-fc434d1f5c12511d48bff5c10a79ca707915b231.tar.gz
nixlib-fc434d1f5c12511d48bff5c10a79ca707915b231.tar.bz2
nixlib-fc434d1f5c12511d48bff5c10a79ca707915b231.tar.lz
nixlib-fc434d1f5c12511d48bff5c10a79ca707915b231.tar.xz
nixlib-fc434d1f5c12511d48bff5c10a79ca707915b231.tar.zst
nixlib-fc434d1f5c12511d48bff5c10a79ca707915b231.zip
synergy: Update to new upstream version 1.5.1.
Bugfix release, fixing the following bugs:

 - Configuration file paths containing spaces don't work
 - Log path needs to be in quotes on windows
 - Installer fails when Windows Firewall is disabled

http://svn.synergy-project.org/tags/1.5.1/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 8d914c262212..df4c0ea97ebd 100644
--- a/pkgs/applications/misc/synergy/default.nix
+++ b/pkgs/applications/misc/synergy/default.nix
@@ -6,11 +6,11 @@ assert stdenv.isLinux -> cryptopp != null;
 with stdenv.lib;
 
 stdenv.mkDerivation rec {
-  name = "synergy-1.5.0";
+  name = "synergy-1.5.1";
 
   src = fetchurl {
-    url = "http://synergy-project.org/files/packages/synergy-1.5.0-r2278-Source.tar.gz";
-    sha256 = "097hk9v01lwzs7ly6ynadxmjh7ad68l5si7w4qmjn6z7l8b61gv6";
+    url = "http://synergy-project.org/files/packages/${name}-r2398-Source.tar.gz";
+    sha256 = "19q8ck15f0jgpbzlm34dzp046wf3iiwa21s1qfyj5sj7xjxwa367";
   };
 
   patches = optional stdenv.isLinux ./cryptopp.patch;