mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-23 13:24:29 +00:00
505c8b2adb
Otherwise, wayland-scanner would be picked up from the wayland in buildInputs, which isn't cross-friendly and will stop working when we split wayland-scanner into a separate package.
43 lines
858 B
Nix
43 lines
858 B
Nix
{ mkDerivation
|
|
, extra-cmake-modules
|
|
, wayland-scanner
|
|
, 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 wayland-scanner ];
|
|
buildInputs = [
|
|
breeze-qt5
|
|
kconfig
|
|
kconfigwidgets
|
|
kiconthemes
|
|
kio
|
|
knotifications
|
|
kwayland
|
|
libXcursor
|
|
qtquickcontrols2
|
|
wayland
|
|
wayland-protocols
|
|
plasma-wayland-protocols
|
|
];
|
|
|
|
meta = {
|
|
description = "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";
|
|
};
|
|
}
|