about summary refs log tree commit diff
path: root/pkgs/desktops/plasma-5/plasma-integration/default.nix
blob: 9febc5172d48a2de70c8a8951ec29468bf09c025 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  mkDerivation,
  extra-cmake-modules,
  breeze-qt5, kconfig, kconfigwidgets, kiconthemes, kio, knotifications,
  kwayland, libXcursor, qtquickcontrols2
}:

# 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
  ];
}