2017-07-22 18:42:26 +01:00
|
|
|
{ stdenv, fetchFromGitHub, fetchpatch, cmake, xlibsWrapper, libX11, libXi, libXtst, libXrandr
|
2015-08-11 11:38:27 +01:00
|
|
|
, xinput, curl, openssl, unzip }:
|
2013-06-21 12:16:30 +01:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2010-07-28 16:35:01 +01:00
|
|
|
|
2012-10-15 13:26:44 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-11-23 04:25:15 +00:00
|
|
|
name = "synergy-${version}";
|
2017-06-06 20:52:30 +01:00
|
|
|
version = "1.8.8";
|
2007-11-11 08:16:23 +00:00
|
|
|
|
2014-11-23 04:25:15 +00:00
|
|
|
src = fetchFromGitHub {
|
2016-02-11 16:36:48 +00:00
|
|
|
owner = "symless";
|
2014-11-23 04:25:15 +00:00
|
|
|
repo = "synergy";
|
2015-08-11 11:38:27 +01:00
|
|
|
rev = "v${version}-stable";
|
2017-06-06 20:52:30 +01:00
|
|
|
sha256 = "0ksgr9hkf09h54572p7k7b9zkfhcdb2g2d5x7ixxn028y8i3jyp3";
|
2012-10-15 13:26:44 +01:00
|
|
|
};
|
2009-12-21 08:55:31 +00:00
|
|
|
|
2017-07-22 18:42:26 +01:00
|
|
|
patches = [ ./openssl-1.1.patch ];
|
|
|
|
|
2017-08-28 17:08:48 +01:00
|
|
|
patch_gcc6 = fetchpatch {
|
|
|
|
url = https://raw.githubusercontent.com/gentoo/gentoo/20e2bff3697ebf5f291e9907b34aae3074a36b53/dev-cpp/gmock/files/gmock-1.7.0-gcc6.patch;
|
|
|
|
sha256 = "0j3f381x1lf8qci9pfv6mliggl8qs2w05v5lw3rs3gn7aibg174d";
|
|
|
|
};
|
|
|
|
|
2015-08-11 11:38:27 +01:00
|
|
|
postPatch = ''
|
2014-02-24 14:19:23 +00:00
|
|
|
${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
|
2017-08-28 17:08:48 +01:00
|
|
|
patch -d ext/gmock-1.6.0 -p1 -i ${patch_gcc6}
|
2015-08-11 13:09:26 +01:00
|
|
|
''
|
|
|
|
# We have XRRNotifyEvent (libXrandr), but with the upstream CMakeLists.txt
|
|
|
|
# it's not able to find it (it's trying to search the store path of libX11
|
|
|
|
# instead) and we don't get XRandR support, even though the CMake output
|
|
|
|
# _seems_ to say so:
|
|
|
|
#
|
|
|
|
# Looking for XRRQueryExtension in Xrandr - found
|
|
|
|
#
|
|
|
|
# The relevant part however is:
|
|
|
|
#
|
|
|
|
# Looking for XRRNotifyEvent - not found
|
|
|
|
#
|
|
|
|
# So let's force it:
|
|
|
|
+ optionalString stdenv.isLinux ''
|
|
|
|
sed -i -e '/HAVE_X11_EXTENSIONS_XRANDR_H/c \
|
|
|
|
set(HAVE_X11_EXTENSIONS_XRANDR_H true)
|
|
|
|
' CMakeLists.txt
|
2013-06-21 05:25:00 +01:00
|
|
|
'';
|
|
|
|
|
2015-08-11 11:38:27 +01:00
|
|
|
buildInputs = [
|
2015-09-15 10:13:22 +01:00
|
|
|
cmake xlibsWrapper libX11 libXi libXtst libXrandr xinput curl openssl
|
2015-08-11 11:38:27 +01:00
|
|
|
];
|
2007-11-11 08:16:23 +00:00
|
|
|
|
2012-10-15 13:26:44 +01:00
|
|
|
installPhase = ''
|
2014-06-30 13:56:10 +01:00
|
|
|
mkdir -p $out/bin
|
2012-10-15 13:26:44 +01:00
|
|
|
cp ../bin/synergyc $out/bin
|
2012-10-15 19:00:20 +01:00
|
|
|
cp ../bin/synergys $out/bin
|
|
|
|
cp ../bin/synergyd $out/bin
|
2012-10-15 13:26:44 +01:00
|
|
|
'';
|
2009-04-29 14:04:01 +01:00
|
|
|
|
2013-06-21 06:14:17 +01:00
|
|
|
doCheck = true;
|
|
|
|
checkPhase = "../bin/unittests";
|
|
|
|
|
2013-06-21 05:20:45 +01:00
|
|
|
meta = {
|
2015-08-11 12:13:13 +01:00
|
|
|
description = "Share one mouse and keyboard between multiple computers";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://synergy-project.org/;
|
2013-06-21 12:16:30 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.aszlig ];
|
|
|
|
platforms = platforms.all;
|
2017-06-07 05:14:18 +01:00
|
|
|
broken = stdenv.isDarwin;
|
2007-11-11 08:16:23 +00:00
|
|
|
};
|
|
|
|
}
|