summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.13/plasma-framework/default.nix
blob: d838996f99c7d325885ebc417679b2045ecfede9 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ kdeFramework, lib
, extra-cmake-modules
, kactivities
, karchive
, kconfig
, kconfigwidgets
, kcoreaddons
, kdbusaddons
, kdeclarative
, kdoctools
, kglobalaccel
, kguiaddons
, ki18n
, kiconthemes
, kio
, knotifications
, kpackage
, kservice
, kwindowsystem
, kxmlgui
, qtscript
, qtx11extras
}:

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