nixpkgs/pkgs/applications/misc/synergy/default.nix
Marc Weber 7a9d92486f Synergy added and fetchcvs modified (see mailinglist post)
svn path=/nixpkgs/trunk/; revision=9624
2007-11-11 08:16:23 +00:00

20 lines
507 B
Nix

args:
args.stdenv.mkDerivation {
name = "synergy-cvs";
src = args.fetchcvs {
url = ":pserver:anonymous@synergy2.cvs.sourceforge.net:/cvsroot/synergy2";
module = "synergy";
tag = "-DNOW";
sha256 = "ef8e2ebfda6e43240051a7af9417092b2af50ece8b5c6c3fbd908ba91c4fe068";
};
buildInputs =(with args; [x11 xextproto libXtst inputproto]);
meta= {
description = "share mouse keyboard and clipboard between computers";
homepage = http://synergy2;
license = "GPL";
};
}