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

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