summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.19/frameworkintegration.nix
blob: 26987c385ad5d4918f71ac1108d9a156652ebc29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ kdeFramework, lib, extra-cmake-modules, kbookmarks, kcompletion
, kconfig, kconfigwidgets, ki18n, kiconthemes, kio, knotifications
, kwidgetsaddons, libXcursor, qtx11extras
}:

kdeFramework {
  name = "frameworkintegration";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [
    kbookmarks kcompletion kconfig knotifications kwidgetsaddons
    libXcursor
  ];
  propagatedBuildInputs = [ kconfigwidgets ki18n kio kiconthemes qtx11extras ];
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}