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

32 lines
871 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, x11, libX11, libXi, libXtst, cryptopp }:
2012-10-15 12:26:44 +00:00
stdenv.mkDerivation rec {
name = "synergy-1.4.12";
2012-10-15 12:26:44 +00:00
src = fetchurl {
url = "http://synergy.googlecode.com/files/${name}-Source.tar.gz";
sha256 = "0j884skwqy8r8ckj9a4rlwsbjwb1yrj9wqma1nwhr2inff6hrdim";
2012-10-15 12:26:44 +00:00
};
patches = [ ./cryptopp.patch ];
buildInputs = [ cmake x11 libX11 libXi libXtst 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
'';
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 = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.all;
};
}