2015-09-15 02:13:22 -07:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, xlibsWrapper, libX11, libXi, libXtst, libXrandr
|
2015-08-11 03:38:27 -07:00
|
|
|
, xinput, curl, openssl, unzip }:
|
2013-06-21 04:16:30 -07:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2010-07-28 08:35:01 -07:00
|
|
|
|
2012-10-15 05:26:44 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2014-11-22 20:25:15 -08:00
|
|
|
name = "synergy-${version}";
|
2015-08-11 03:38:27 -07:00
|
|
|
version = "1.7.4";
|
2007-11-11 00:16:23 -08:00
|
|
|
|
2014-11-22 20:25:15 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "synergy";
|
|
|
|
repo = "synergy";
|
2015-08-11 03:38:27 -07:00
|
|
|
rev = "v${version}-stable";
|
|
|
|
sha256 = "0pxj0qpnsaffpaxik8vc5rjfinmx8ab3b2lssrxkfbs7isskvs33";
|
2012-10-15 05:26:44 -07:00
|
|
|
};
|
2009-12-21 00:55:31 -08:00
|
|
|
|
2015-08-11 03:38:27 -07:00
|
|
|
postPatch = ''
|
2014-02-24 06:19:23 -08: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
|
2015-08-11 05:09:26 -07: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-20 21:25:00 -07:00
|
|
|
'';
|
|
|
|
|
2015-08-11 03:38:27 -07:00
|
|
|
buildInputs = [
|
2015-09-15 02:13:22 -07:00
|
|
|
cmake xlibsWrapper libX11 libXi libXtst libXrandr xinput curl openssl
|
2015-08-11 03:38:27 -07:00
|
|
|
];
|
2007-11-11 00:16:23 -08:00
|
|
|
|
2012-10-15 05:26:44 -07:00
|
|
|
installPhase = ''
|
2014-06-30 05:56:10 -07:00
|
|
|
mkdir -p $out/bin
|
2012-10-15 05:26:44 -07:00
|
|
|
cp ../bin/synergyc $out/bin
|
2012-10-15 11:00:20 -07:00
|
|
|
cp ../bin/synergys $out/bin
|
|
|
|
cp ../bin/synergyd $out/bin
|
2012-10-15 05:26:44 -07:00
|
|
|
'';
|
2009-04-29 06:04:01 -07:00
|
|
|
|
2013-06-20 22:14:17 -07:00
|
|
|
doCheck = true;
|
|
|
|
checkPhase = "../bin/unittests";
|
|
|
|
|
2013-06-20 21:20:45 -07:00
|
|
|
meta = {
|
2015-08-11 04:13:13 -07:00
|
|
|
description = "Share one mouse and keyboard between multiple computers";
|
|
|
|
homepage = "http://synergy-project.org/";
|
2013-06-21 04:16:30 -07:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.aszlig ];
|
|
|
|
platforms = platforms.all;
|
2007-11-11 00:16:23 -08:00
|
|
|
};
|
|
|
|
}
|