summaryrefslogtreecommitdiffstats
path: root/pkgs/desktops/plasma-5/plasma-integration.nix
blob: 2bca3943c3492f276c3fc5d1d5145cb99226e8d5 (plain)
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, kwayland
, libXcursor
}:

# TODO: install Noto Sans and Oxygen Mono fonts with plasma-integration

mkDerivation {
  name = "plasma-integration";
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    breeze-qt5 kconfig kconfigwidgets kiconthemes kio kwayland
    libXcursor
  ];
}