about summary refs log tree commit diff
path: root/pkgs/applications/kde/krfb.nix
blob: 367e9ab010812f4050160f7a3f0dac8596d17a16 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ mkDerivation, lib
, extra-cmake-modules, kdoctools
, kconfig, kcoreaddons, kcrash, kdbusaddons, kdnssd, knotifications, kwallet
, kwidgetsaddons, kwindowsystem, kxmlgui, kwayland, kpipewire
, libvncserver, libXtst, libXdamage
, qtx11extras, pipewire, plasma-wayland-protocols, wayland
}:

mkDerivation {
  pname = "krfb";
  meta = {
    homepage = "https://apps.kde.org/krfb/";
    description = "Desktop sharing (VNC)";
    license = with lib.licenses; [ gpl2Plus fdl12Plus ];
    maintainers = with lib.maintainers; [ jerith666 ];
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [
    libvncserver libXtst libXdamage
    kconfig kcoreaddons kcrash kdbusaddons knotifications kwallet kwidgetsaddons
    kwindowsystem kxmlgui kwayland kpipewire
    qtx11extras
    pipewire
    plasma-wayland-protocols
    wayland
  ];
  propagatedBuildInputs = [ kdnssd ];
}