nixpkgs/pkgs/desktops/plasma-5/plasma-integration/default.nix

37 lines
611 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
];
}