2012-10-15 14:26:44 +02:00
|
|
|
{ stdenv, fetchurl, cmake, x11, libX11, libXi, libXtst }:
|
2010-07-28 17:35:01 +02:00
|
|
|
|
2012-10-15 14:26:44 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "synergy-1.4.10";
|
2007-11-11 09:16:23 +01:00
|
|
|
|
2012-10-15 14:26:44 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://synergy.googlecode.com/files/${name}-Source.tar.gz";
|
|
|
|
sha256 = "1ghgf96gbk4sdw8sqlc3pjschkmmqybihi12mg6hi26gnk7a5m86";
|
|
|
|
};
|
2009-12-21 09:55:31 +01:00
|
|
|
|
2012-10-15 14:26:44 +02: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 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
|
|
|
|
2010-07-28 17:35:01 +02:00
|
|
|
meta = {
|
|
|
|
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;
|
2010-07-28 17:35:01 +02:00
|
|
|
license = "GPL";
|
2007-11-11 09:16:23 +01:00
|
|
|
};
|
|
|
|
}
|