summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.13/ktextwidgets.nix
blob: e27839162ef7099fc8adbea5b0e67b772f3bb2e6 (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
{ kdeFramework, lib
, extra-cmake-modules
, kcompletion
, kconfig
, kconfigwidgets
, ki18n
, kiconthemes
, kservice
, kwindowsystem
, sonnet
}:

kdeFramework {
  name = "ktextwidgets";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [
    kcompletion kconfig kconfigwidgets kiconthemes kservice kwindowsystem
  ];
  propagatedBuildInputs = [ ki18n sonnet ];
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}