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

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