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>
This commit is contained in:
aszlig 2014-09-03 12:52:08 +02:00
parent 0f6d45f6b4
commit fc434d1f5c
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961

View File

@ -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;