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