2013-06-21 07:12:59 +02:00
|
|
|
{ stdenv, fetchurl, cmake, x11, libX11, libXi, libXtst, libXrandr, xinput
|
2013-06-21 13:46:22 +02:00
|
|
|
, cryptopp ? null, unzip ? null }:
|
2013-06-21 13:16:30 +02:00
|
|
|
|
2013-06-21 13:46:22 +02:00
|
|
|
assert stdenv.isLinux -> cryptopp != null;
|
2013-06-21 13:16:30 +02:00
|
|
|
assert !stdenv.isLinux -> unzip != null;
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2010-07-28 17:35:01 +02:00
|
|
|
|
2012-10-15 14:26:44 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2013-10-23 16:48:47 +02:00
|
|
|
name = "synergy-1.4.15";
|
2007-11-11 09:16:23 +01:00
|
|
|
|
2012-10-15 14:26:44 +02:00
|
|
|
src = fetchurl {
|
2013-10-19 19:49:10 +02:00
|
|
|
url = "http://synergy.googlecode.com/files/${name}-Source.tar.gz";
|
2013-10-23 16:48:47 +02:00
|
|
|
sha256 = "0l1mxxky9hacyva0npzkgkwg4wkmihzq3abdrds0w5f6is44adv4";
|
2012-10-15 14:26:44 +02:00
|
|
|
};
|
2009-12-21 09:55:31 +01:00
|
|
|
|
2013-06-21 13:16:30 +02:00
|
|
|
patches = optional stdenv.isLinux ./cryptopp.patch;
|
2013-06-21 06:20:45 +02:00
|
|
|
|
2013-06-21 13:16:30 +02:00
|
|
|
postPatch = if stdenv.isLinux then ''
|
2013-06-21 06:25:00 +02:00
|
|
|
sed -i -e '/HAVE_X11_EXTENSIONS_XRANDR_H/c \
|
|
|
|
set(HAVE_X11_EXTENSIONS_XRANDR_H true)' CMakeLists.txt
|
2013-06-21 13:16:30 +02:00
|
|
|
'' else ''
|
|
|
|
${unzip}/bin/unzip -d tools/cryptopp562 tools/cryptopp562.zip
|
2013-06-21 06:25:00 +02:00
|
|
|
'';
|
|
|
|
|
2013-06-21 13:46:22 +02:00
|
|
|
buildInputs = [ cmake x11 libX11 libXi libXtst libXrandr xinput ]
|
|
|
|
++ optional stdenv.isLinux cryptopp;
|
2013-06-21 06:20:45 +02:00
|
|
|
|
2012-10-15 14:26:44 +02:00
|
|
|
# At this moment make install doesn't work for synergy
|
|
|
|
# http://synergy-foss.org/spit/issues/details/3317/
|
2007-11-11 09:16:23 +01:00
|
|
|
|
2012-10-15 14:26:44 +02:00
|
|
|
installPhase = ''
|
|
|
|
ensureDir $out/bin
|
|
|
|
cp ../bin/synergyc $out/bin
|
2012-10-15 20:00:20 +02:00
|
|
|
cp ../bin/synergys $out/bin
|
|
|
|
cp ../bin/synergyd $out/bin
|
2012-10-15 14:26:44 +02:00
|
|
|
'';
|
2009-04-29 15:04:01 +02:00
|
|
|
|
2013-06-21 07:14:17 +02:00
|
|
|
doCheck = true;
|
|
|
|
checkPhase = "../bin/unittests";
|
|
|
|
|
2013-06-21 06:20:45 +02:00
|
|
|
meta = {
|
2010-07-28 17:35:01 +02:00
|
|
|
description = "Tool to share the mouse keyboard and the clipboard between computers";
|
2012-10-15 14:26:44 +02:00
|
|
|
homepage = http://synergy-foss.org;
|
2013-06-21 13:16:30 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.aszlig ];
|
|
|
|
platforms = platforms.all;
|
2007-11-11 09:16:23 +01:00
|
|
|
};
|
|
|
|
}
|