nixpkgs/pkgs/desktops/plasma-5/kwayland-integration.nix
LoveIsGrief 408b28e988
libsForQt5: Add description and home page for kde integrations
For those who don't know what the projects are, this helps clear that up without any additional searches

Closes #152293
2023-06-04 12:59:14 +02:00

23 lines
549 B
Nix

{ 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";
};
}