summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/frameworks-5.19/plasma-framework/default.nix
blob: d8846f7772318695c37121add0986cc70132b181 (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
25
{ kdeFramework, lib, extra-cmake-modules, kactivities, karchive
, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons, kdeclarative
, kdoctools, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio
, knotifications, kpackage, kservice, kwindowsystem, kxmlgui
, makeQtWrapper, qtscript, qtx11extras
}:

kdeFramework {
  name = "plasma-framework";
  nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ];
  buildInputs = [
    karchive kconfig kconfigwidgets kcoreaddons kdbusaddons kguiaddons
    kiconthemes knotifications kxmlgui qtscript
  ];
  propagatedBuildInputs = [
    kactivities kdeclarative kglobalaccel ki18n kio kpackage kservice kwindowsystem
    qtx11extras
  ];
  postInstall = ''
    wrapQtProgram "$out/bin/plasmapkg2"
  '';
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}