summary refs log tree commit diff
path: root/pkgs/desktops/plasma-5/plasma-integration/default.nix
blob: d33ecf05024295de72d38c33716714cccd2b4e6a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  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 {
  name = "plasma-integration";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [
    breeze-qt5 kconfig kconfigwidgets kiconthemes kio knotifications kwayland
    libXcursor qtquickcontrols2
  ];
  patches = [
    # See also: https://phabricator.kde.org/D9070
    # ttuegel: The patch is checked into Nixpkgs because I could not get
    # Phabricator to give me a stable link to it.
    ./D9070.patch
  ];
  patchFlags = "-p0";
}