2012-10-15 13:26:44 +01:00
|
|
|
{ stdenv, fetchurl, cmake, x11, libX11, libXi, libXtst }:
|
2010-07-28 16:35:01 +01:00
|
|
|
|
2012-10-15 13:26:44 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "synergy-1.4.10";
|
2007-11-11 08:16:23 +00:00
|
|
|
|
2012-10-15 13:26:44 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://synergy.googlecode.com/files/${name}-Source.tar.gz";
|
|
|
|
sha256 = "1ghgf96gbk4sdw8sqlc3pjschkmmqybihi12mg6hi26gnk7a5m86";
|
|
|
|
};
|
2009-12-21 08:55:31 +00:00
|
|
|
|
2012-10-15 13:26:44 +01:00
|
|
|
buildInputs = [ cmake x11 libX11 libXi libXtst ];
|
|
|
|
|
|
|
|
# At this moment make install doesn't work for synergy
|
|
|
|
# http://synergy-foss.org/spit/issues/details/3317/
|
2007-11-11 08:16:23 +00:00
|
|
|
|
2012-10-15 13:26:44 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
ensureDir $out/bin
|
|
|
|
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
|
|
|
|
2010-07-28 16:35:01 +01:00
|
|
|
meta = {
|
|
|
|
description = "Tool to share the mouse keyboard and the clipboard between computers";
|
2012-10-15 13:26:44 +01:00
|
|
|
homepage = http://synergy-foss.org;
|
2013-03-28 11:47:27 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
2007-11-11 08:16:23 +00:00
|
|
|
};
|
|
|
|
}
|