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

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