summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.19/ktextwidgets.nix
blob: e332d4ff9a832a16ef7609615cbc233b4aae2d06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ 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
  ];
  propagatedBuildInputs = [ ki18n kwindowsystem sonnet ];
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}