about summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.16/kdesignerplugin.nix
blob: 28df24153208c0f530fa69661cdeb82e077e5d49 (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
{ kdeFramework, lib
, extra-cmake-modules
, kcompletion
, kconfig
, kconfigwidgets
, kcoreaddons
, kdewebkit
, kdoctools
, kiconthemes
, kio
, kitemviews
, kplotting
, ktextwidgets
, kwidgetsaddons
, kxmlgui
, sonnet
}:

kdeFramework {
  name = "kdesignerplugin";
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [
    kcompletion kconfig kconfigwidgets kcoreaddons kdewebkit
    kiconthemes kitemviews kplotting ktextwidgets kwidgetsaddons
    kxmlgui
  ];
  propagatedBuildInputs = [ kio sonnet ];
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}