about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/plasma-5/kwayland-integration.nix
blob: abe1c866671b96fdd678f26a3a9fc763e16929ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ mkDerivation
, extra-cmake-modules
, kguiaddons
, kidletime
, kwayland
, kwindowsystem
, qtbase
, wayland-protocols
, wayland-scanner
, wayland
}:

mkDerivation {
  pname = "kwayland-integration";
  nativeBuildInputs = [ extra-cmake-modules wayland-scanner ];
  buildInputs = [ kguiaddons kidletime kwindowsystem kwayland qtbase wayland-protocols wayland ];

  meta = {
    description = "Integration plugins for various KDE frameworks for the Wayland windowing system";
    homepage = "https://invent.kde.org/plasma/kwayland-integration";
  };
}