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

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