nixpkgs/pkgs/applications/misc/synergy/default.nix

50 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, x11, libX11, libXi, libXtst, libXrandr, xinput
, cryptopp ? null, unzip ? null }:
assert stdenv.isLinux -> cryptopp != null;
assert !stdenv.isLinux -> unzip != null;
with stdenv.lib;
2012-10-15 12:26:44 +00:00
stdenv.mkDerivation rec {
name = "synergy-1.4.15";
2012-10-15 12:26:44 +00:00
src = fetchurl {
url = "http://synergy.googlecode.com/files/${name}-Source.tar.gz";
sha256 = "0l1mxxky9hacyva0npzkgkwg4wkmihzq3abdrds0w5f6is44adv4";
2012-10-15 12:26:44 +00:00
};
patches = optional stdenv.isLinux ./cryptopp.patch;
postPatch = if stdenv.isLinux then ''
sed -i -e '/HAVE_X11_EXTENSIONS_XRANDR_H/c \
set(HAVE_X11_EXTENSIONS_XRANDR_H true)' CMakeLists.txt
'' else ''
${unzip}/bin/unzip -d tools/cryptopp562 tools/cryptopp562.zip
'';
buildInputs = [ cmake x11 libX11 libXi libXtst libXrandr xinput ]
++ optional stdenv.isLinux cryptopp;
2012-10-15 12:26:44 +00:00
# At this moment make install doesn't work for synergy
# http://synergy-foss.org/spit/issues/details/3317/
2012-10-15 12:26:44 +00:00
installPhase = ''
ensureDir $out/bin
cp ../bin/synergyc $out/bin
2012-10-15 18:00:20 +00:00
cp ../bin/synergys $out/bin
cp ../bin/synergyd $out/bin
2012-10-15 12:26:44 +00:00
'';
doCheck = true;
checkPhase = "../bin/unittests";
meta = {
description = "Tool to share the mouse keyboard and the clipboard between computers";
2012-10-15 12:26:44 +00:00
homepage = http://synergy-foss.org;
license = licenses.gpl2;
maintainers = [ maintainers.aszlig ];
platforms = platforms.all;
};
}