summary refs log tree commit diff
path: root/pkgs/servers/misc
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-11-07 17:14:04 -0500
committerGitHub <noreply@github.com>2019-11-07 17:14:04 -0500
commit67f4a0735ffdf648a1deb30e141e2a8c8a753282 (patch)
tree3e20fe00420e8b97faf169e9bf1d569eb8de1cb4 /pkgs/servers/misc
parentd5a4d1f35ce01b1f27e0f8a15cb06a7b8287949e (diff)
parentf107623c138a3771a252c6027dc2bff51e76561a (diff)
downloadnixpkgs-67f4a0735ffdf648a1deb30e141e2a8c8a753282.tar
nixpkgs-67f4a0735ffdf648a1deb30e141e2a8c8a753282.tar.gz
nixpkgs-67f4a0735ffdf648a1deb30e141e2a8c8a753282.tar.bz2
nixpkgs-67f4a0735ffdf648a1deb30e141e2a8c8a753282.tar.lz
nixpkgs-67f4a0735ffdf648a1deb30e141e2a8c8a753282.tar.xz
nixpkgs-67f4a0735ffdf648a1deb30e141e2a8c8a753282.tar.zst
nixpkgs-67f4a0735ffdf648a1deb30e141e2a8c8a753282.zip
Merge pull request #70198 from fgaz/qremotecontrol-server/init
qremotecontrol-server: init at 2.4.1
Diffstat (limited to 'pkgs/servers/misc')
-rw-r--r--pkgs/servers/misc/qremotecontrol-server/default.nix46
1 files changed, 46 insertions, 0 deletions
diff --git a/pkgs/servers/misc/qremotecontrol-server/default.nix b/pkgs/servers/misc/qremotecontrol-server/default.nix
new file mode 100644
index 00000000000..ddf69d10968
--- /dev/null
+++ b/pkgs/servers/misc/qremotecontrol-server/default.nix
@@ -0,0 +1,46 @@
+{ stdenv
+, fetchurl
+, qmake4Hook
+, qt4
+, xorg
+}:
+
+stdenv.mkDerivation rec {
+  pname = "qremotecontrol-server";
+  version = "2.4.1";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/project/qrc/${version}/qremotecontrol-${version}.tar.bz2";
+    sha256 = "07hzc9959a56b49jgmcv8ry8b9sppklvqs9kns3qjj3v9d22nbrp";
+  };
+
+  nativeBuildInputs = [ qmake4Hook ];
+  buildInputs = [ qt4 xorg.libXtst ];
+
+  postPatch = ''
+    substituteInPlace QRemoteControl-Server.pro \
+      --replace /usr $out
+  '';
+
+  meta = with stdenv.lib; {
+    license = licenses.gpl3;
+    platforms = platforms.all;
+    maintainers = with maintainers; [ fgaz ];
+    homepage = "https://qremote.org/";
+    downloadPage = "https://qremote.org/download.php#Download";
+    description = "Remote control your desktop from your mobile";
+    longDescription = ''
+      With QRemoteControl installed on your desktop you can easily control
+      your computer via WiFi from your mobile. By using the touch pad of your
+      Phone you can for example open the internet browser and navigate to
+      the pages you want to visit, use the music player or your media center
+      without being next to your PC or laptop. Summarizing QRemoteControl
+      allows you to do almost everything you would be able to do with a
+      mouse and a keyboard, but from a greater distance. To make these
+      replacements possible QRemoteControl offers you a touch pad, a
+      keyboard, multimedia keys and buttons for starting applications. Even
+      powering on the computer via Wake On Lan is supported.
+    '';
+  };
+}
+