2021-12-19 01:06:50 +00:00
|
|
|
{ mkDerivation, lib
|
|
|
|
, extra-cmake-modules, kdoctools
|
|
|
|
, kconfig, kcoreaddons, kcrash, kdbusaddons, kdnssd, knotifications, kwallet
|
2023-04-29 16:46:19 +00:00
|
|
|
, kwidgetsaddons, kwindowsystem, kxmlgui, kwayland, kpipewire
|
2021-12-19 01:06:50 +00:00
|
|
|
, libvncserver, libXtst, libXdamage
|
2023-02-02 18:25:31 +00:00
|
|
|
, qtx11extras, pipewire, plasma-wayland-protocols, wayland
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
mkDerivation {
|
2021-01-05 17:05:55 +00:00
|
|
|
pname = "krfb";
|
2020-04-24 23:36:52 +00:00
|
|
|
meta = {
|
2021-09-28 08:13:01 +00:00
|
|
|
homepage = "https://apps.kde.org/krfb/";
|
|
|
|
description = "Desktop sharing (VNC)";
|
2022-11-21 17:40:18 +00:00
|
|
|
license = with lib.licenses; [ gpl2Plus fdl12Plus ];
|
2020-04-24 23:36:52 +00:00
|
|
|
maintainers = with lib.maintainers; [ jerith666 ];
|
|
|
|
};
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
2021-05-28 09:39:13 +00:00
|
|
|
buildInputs = [
|
|
|
|
libvncserver libXtst libXdamage
|
|
|
|
kconfig kcoreaddons kcrash kdbusaddons knotifications kwallet kwidgetsaddons
|
2023-04-29 16:46:19 +00:00
|
|
|
kwindowsystem kxmlgui kwayland kpipewire
|
2021-05-28 09:39:13 +00:00
|
|
|
qtx11extras
|
2023-02-02 18:25:31 +00:00
|
|
|
pipewire
|
|
|
|
plasma-wayland-protocols
|
|
|
|
wayland
|
2021-05-28 09:39:13 +00:00
|
|
|
];
|
|
|
|
propagatedBuildInputs = [ kdnssd ];
|
2020-04-24 23:36:52 +00:00
|
|
|
}
|