summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.17/kdesignerplugin.nix
blob: cbc114ccca03638a0fde1941f0799cfc61a11ba8 (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
{ kdeFramework, lib, makeQtWrapper
, 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 makeQtWrapper ];
  buildInputs = [
    kcompletion kconfig kconfigwidgets kcoreaddons kdewebkit
    kiconthemes kitemviews kplotting ktextwidgets kwidgetsaddons
    kxmlgui
  ];
  propagatedBuildInputs = [ kio sonnet ];
  postInstall = ''
    wrapQtProgram "$out/bin/kgendesignerplugin"
  '';
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}