nixpkgs/pkgs/applications/misc/synergy/default.nix
Marc Weber f5d0193047 synergy broke by xorg-update
svn path=/nixpkgs/trunk/; revision=18335
2009-11-12 16:11:44 +00:00

28 lines
738 B
Nix

args: with args;
stdenv.mkDerivation {
name = "synergy-cvs";
src = bleedingEdgeRepos.sourceByName "synergy";
/*
fetchcvs {
cvsRoot = ":pserver:anonymous@synergy2.cvs.sourceforge.net:/cvsroot/synergy2";
module = "synergy";
date = "NOW";
sha256 = "0a52b3adaae5f41cf16c5911c9037c5f2ee704a27bcaa9f874e3a4ff58d773c1";
};
*/
buildInputs = [x11 xextproto libXtst inputproto libXi];
patches = [ (fetchurl {
url = http://mawercer.de/~nix/syncergy-gcc43.patch.gz;
sha256 = "12kla0nii6qc9fy5x4dc4qisfcyl9dqnrj5y911davnvwkwlj18h";
}) ];
meta= {
description = "share mouse keyboard and clipboard between computers";
homepage = http://synergy2.sourceforge.net;
license = "GPL";
};
}