qremotecontrol-server: init at 2.4.1
This commit is contained in:
parent
5eee2d42a0
commit
f107623c13
|
@ -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.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
|
@ -15126,6 +15126,8 @@ in
|
||||||
inherit (pythonPackages) buildPythonPackage qpid-python;
|
inherit (pythonPackages) buildPythonPackage qpid-python;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
qremotecontrol-server = callPackage ../servers/misc/qremotecontrol-server { };
|
||||||
|
|
||||||
quagga = callPackage ../servers/quagga { };
|
quagga = callPackage ../servers/quagga { };
|
||||||
|
|
||||||
rabbitmq-server = callPackage ../servers/amqp/rabbitmq-server {
|
rabbitmq-server = callPackage ../servers/amqp/rabbitmq-server {
|
||||||
|
@ -15477,11 +15479,11 @@ in
|
||||||
bridge-utils = callPackage ../os-specific/linux/bridge-utils { };
|
bridge-utils = callPackage ../os-specific/linux/bridge-utils { };
|
||||||
|
|
||||||
busybox = callPackage ../os-specific/linux/busybox { };
|
busybox = callPackage ../os-specific/linux/busybox { };
|
||||||
busybox-sandbox-shell = callPackage ../os-specific/linux/busybox/sandbox-shell.nix {
|
busybox-sandbox-shell = callPackage ../os-specific/linux/busybox/sandbox-shell.nix {
|
||||||
# musl roadmap has RISC-V support projected for 1.1.20
|
# musl roadmap has RISC-V support projected for 1.1.20
|
||||||
busybox = if !stdenv.hostPlatform.isRiscV && stdenv.hostPlatform.libc != "bionic"
|
busybox = if !stdenv.hostPlatform.isRiscV && stdenv.hostPlatform.libc != "bionic"
|
||||||
then pkgsStatic.busybox
|
then pkgsStatic.busybox
|
||||||
else busybox;
|
else busybox;
|
||||||
};
|
};
|
||||||
|
|
||||||
cachefilesd = callPackage ../os-specific/linux/cachefilesd { };
|
cachefilesd = callPackage ../os-specific/linux/cachefilesd { };
|
||||||
|
|
Loading…
Reference in New Issue