summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/ktextwidgets.nix
blob: 604066b963945baab36556c122228c0c30479f57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  mkDerivation, lib,
  extra-cmake-modules, qttools,
  kcompletion, kconfig, kconfigwidgets, ki18n, kiconthemes, kservice,
  kwindowsystem, qtbase, sonnet,
}:

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