nixpkgs/pkgs/desktops/plasma-5/plasma-integration/default.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

42 lines
826 B
Nix

{ mkDerivation
, extra-cmake-modules
, breeze-qt5
, kconfig
, kconfigwidgets
, kiconthemes
, kio
, knotifications
, kwayland
, libXcursor
, qtquickcontrols2
, wayland
, wayland-protocols
, plasma-wayland-protocols
}:
# TODO: install Noto Sans and Oxygen Mono fonts with plasma-integration
mkDerivation {
pname = "plasma-integration";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [
breeze-qt5
kconfig
kconfigwidgets
kiconthemes
kio
knotifications
kwayland
libXcursor
qtquickcontrols2
wayland
wayland-protocols
plasma-wayland-protocols
];
meta = {
description = "A set of plugins responsible for better integration of Qt applications when running on a KDE Plasma workspace";
homepage = "https://invent.kde.org/plasma/plasma-integration";
};
}