xcursor-pro: init at 2.0.2 (#335188)
[NixPkgs.git] / pkgs / by-name / qu / quicksynergy / package.nix
blobbb69683e6858526c907e2686008fe81fca64cb61
2   lib,
3   stdenv,
4   fetchurl,
5   pkg-config,
6   gtk2,
7   synergy,
8 }:
10 stdenv.mkDerivation rec {
11   pname = "quicksynergy";
12   version = "0.9.0";
13   src = fetchurl {
14     url = "mirror://sourceforge/project/quicksynergy/Linux/${version}/quicksynergy-${version}.tar.gz";
15     sha256 = "1pi8503bg8q1psw50y6d780i33nnvfjqiy9vnr3v52pdcfip8pix";
16   };
18   nativeBuildInputs = [ pkg-config ];
19   buildInputs = [
20     gtk2
21     synergy
22   ];
23   preBuild = "
24     sed -i 's@/usr/bin@${synergy.out}/bin@' src/synergy_config.c
25   ";
26   meta = {
27     description = "GUI application to share mouse and keyboard between computers";
28     longDescription = "
29       QuickSynergy is a graphical interface (GUI) for easily configuring
30       Synergy2, an application that allows the user to share his mouse and
31       keyboard between two or more computers.
33       Without the need for any external hardware, Synergy2 uses the TCP-IP
34       protocol to share the resources, even between machines with different
35       operating systems, such as Mac OS, Linux and Windows.
37       Remember to open port 24800 (used by synergys program) if you want to
38       host mouse and keyboard.";
39     homepage = "https://sourceforge.net/projects/quicksynergy/";
40     license = lib.licenses.gpl2;
41     maintainers = [ lib.maintainers.spinus ];
42     platforms = lib.platforms.linux;
43     mainProgram = "quicksynergy";
44   };