summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/kdeclarative.nix
blob: 8db1b73c91a72d881286d067236426d504db7687 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ kdeFramework, lib, extra-cmake-modules, epoxy, kconfig
, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kpackage
, kwidgetsaddons, kwindowsystem, pkgconfig
, qtdeclarative
}:

kdeFramework {
  name = "kdeclarative";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules ];
  propagatedBuildInputs = [
    epoxy kconfig kglobalaccel kguiaddons ki18n kiconthemes kio kpackage
    kwidgetsaddons kwindowsystem qtdeclarative
  ];
}