2012-10-15 05:26:44 -07:00
|
|
|
{ stdenv, fetchurl, cmake, x11, libX11, libXi, libXtst }:
|
2010-07-28 08:35:01 -07:00
|
|
|
|
2012-10-15 05:26:44 -07:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "synergy-1.4.10";
|
2007-11-11 00:16:23 -08:00
|
|
|
|
2012-10-15 05:26:44 -07:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://synergy.googlecode.com/files/${name}-Source.tar.gz";
|
|
|
|
sha256 = "1ghgf96gbk4sdw8sqlc3pjschkmmqybihi12mg6hi26gnk7a5m86";
|
|
|
|
};
|
2009-12-21 00:55:31 -08:00
|
|
|
|
2012-10-15 05:26:44 -07: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 00:16:23 -08:00
|
|
|
|
2012-10-15 05:26:44 -07:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
ensureDir $out/bin
|
|
|
|
pwd
|
|
|
|
cp ../bin/synergyc $out/bin
|
|
|
|
cp ../bin/synergys $out/bin
|
|
|
|
cp ../bin/synergyd $out/bin
|
|
|
|
'';
|
2009-04-29 06:04:01 -07:00
|
|
|
|
2010-07-28 08:35:01 -07:00
|
|
|
meta = {
|
|
|
|
description = "Tool to share the mouse keyboard and the clipboard between computers";
|
2012-10-15 05:26:44 -07:00
|
|
|
homepage = http://synergy-foss.org;
|
2010-07-28 08:35:01 -07:00
|
|
|
license = "GPL";
|
2007-11-11 00:16:23 -08:00
|
|
|
};
|
|
|
|
}
|