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