38d639745e
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>
55 lines
1.5 KiB
Nix
55 lines
1.5 KiB
Nix
{ stdenv, fetchFromGitHub, cmake, x11, libX11, libXi, libXtst, libXrandr
|
|
, xinput, curl, cryptopp ? null, unzip }:
|
|
|
|
assert stdenv.isLinux -> cryptopp != null;
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "synergy-${version}";
|
|
version = "1.6.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "synergy";
|
|
repo = "synergy";
|
|
rev = version;
|
|
sha256 = "0himg6c50x5wz5nc6rgd54rph1w6nin6j9f08pa4spsxn9b5h8ks";
|
|
};
|
|
|
|
patches = optional stdenv.isLinux ./cryptopp.patch;
|
|
|
|
postPatch = (if stdenv.isLinux then ''
|
|
sed -i -e '/HAVE_X11_EXTENSIONS_XRANDR_H/c \
|
|
set(HAVE_X11_EXTENSIONS_XRANDR_H true)' CMakeLists.txt
|
|
'' else ''
|
|
${unzip}/bin/unzip -d ext/cryptopp562 ext/cryptopp562.zip
|
|
'') + ''
|
|
${unzip}/bin/unzip -d ext/gmock-1.6.0 ext/gmock-1.6.0.zip
|
|
${unzip}/bin/unzip -d ext/gtest-1.6.0 ext/gtest-1.6.0.zip
|
|
'';
|
|
|
|
buildInputs = [ cmake x11 libX11 libXi libXtst libXrandr xinput curl ]
|
|
++ optional stdenv.isLinux cryptopp;
|
|
|
|
# At this moment make install doesn't work for synergy
|
|
# http://synergy-foss.org/spit/issues/details/3317/
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp ../bin/synergyc $out/bin
|
|
cp ../bin/synergys $out/bin
|
|
cp ../bin/synergyd $out/bin
|
|
'';
|
|
|
|
doCheck = true;
|
|
checkPhase = "../bin/unittests";
|
|
|
|
meta = {
|
|
description = "Tool to share the mouse keyboard and the clipboard between computers";
|
|
homepage = http://synergy-foss.org;
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.aszlig ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|