nixpkgs/pkgs/applications/kde/krfb.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
892 B
Nix
Raw Permalink Normal View History

{ 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
, libvncserver, libXtst, libXdamage
, 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 = {
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 ];
buildInputs = [
libvncserver libXtst libXdamage
kconfig kcoreaddons kcrash kdbusaddons knotifications kwallet kwidgetsaddons
2023-03-17 23:39:35 +01:00
kwindowsystem kxmlgui kwayland kpipewire
qtx11extras
pipewire
plasma-wayland-protocols
wayland
];
propagatedBuildInputs = [ kdnssd ];
2017-03-11 16:29:44 +01:00
}