about summary refs log tree commit diff
path: root/pkgs/applications/misc/synergy/default.nix
blob: 7872c6abaaf72d0433f031db6a6d60d412ae550c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
args:
args.stdenv.mkDerivation {
  name = "synergy-cvs";

  src = args.fetchcvs {
    url = ":pserver:anonymous@synergy2.cvs.sourceforge.net:/cvsroot/synergy2";
    module = "synergy";
    date = "NOW";
    sha256 = "ef8e2ebfda6e43240051a7af9417092b2af50ece8b5c6c3fbd908ba91c4fe068";
  };

  buildInputs =(with args; [x11 xextproto libXtst inputproto]);

  meta= { 
      description = "share mouse keyboard and clipboard between computers";
      homepage = http://synergy2;
      license = "GPL";
  };
}