2021-12-18 03:05:13 +01:00
|
|
|
{ mkDerivation, lib
|
|
|
|
, extra-cmake-modules, kdoctools
|
|
|
|
, kconfig, kcoreaddons, kcrash, kdbusaddons, kdnssd, knotifications, kwallet
|
2023-03-17 23:39:35 +01:00
|
|
|
, kwidgetsaddons, kwindowsystem, kxmlgui, kwayland, kpipewire
|
2021-12-18 03:05:13 +01:00
|
|
|
, libvncserver, libXtst, libXdamage
|
2022-01-12 10:18:09 +01:00
|
|
|
, qtx11extras, pipewire, plasma-wayland-protocols, wayland
|
2017-03-11 16:29:44 +01:00
|
|
|
}:
|
|
|
|
|
2017-05-16 17:56:41 +02:00
|
|
|
mkDerivation {
|
2020-12-25 00:05:07 +01:00
|
|
|
pname = "krfb";
|
2017-05-16 17:56:41 +02:00
|
|
|
meta = {
|
2021-09-18 11:48:23 +02:00
|
|
|
homepage = "https://apps.kde.org/krfb/";
|
|
|
|
description = "Desktop sharing (VNC)";
|
2022-10-27 22:47:29 +02:00
|
|
|
license = with lib.licenses; [ gpl2Plus fdl12Plus ];
|
2017-05-16 17:56:41 +02:00
|
|
|
maintainers = with lib.maintainers; [ jerith666 ];
|
|
|
|
};
|
2017-05-17 21:26:11 +02:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
2021-05-11 22:33:29 +02:00
|
|
|
buildInputs = [
|
|
|
|
libvncserver libXtst libXdamage
|
|
|
|
kconfig kcoreaddons kcrash kdbusaddons knotifications kwallet kwidgetsaddons
|
2023-03-17 23:39:35 +01:00
|
|
|
kwindowsystem kxmlgui kwayland kpipewire
|
2021-05-11 22:33:29 +02:00
|
|
|
qtx11extras
|
2022-01-12 10:18:09 +01:00
|
|
|
pipewire
|
|
|
|
plasma-wayland-protocols
|
|
|
|
wayland
|
2021-05-11 22:33:29 +02:00
|
|
|
];
|
|
|
|
propagatedBuildInputs = [ kdnssd ];
|
2017-03-11 16:29:44 +01:00
|
|
|
}
|