summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.13/kdeclarative.nix
blob: b62a13f8fa9f2dce92e87a510d7f542aef87c4fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ kdeFramework, lib
, extra-cmake-modules
, epoxy
, kconfig
, kglobalaccel
, kguiaddons
, ki18n
, kiconthemes
, kio
, kpackage
, kwidgetsaddons
, kwindowsystem
, pkgconfig
, qtdeclarative
}:

kdeFramework {
  name = "kdeclarative";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [
    epoxy kglobalaccel kguiaddons ki18n kiconthemes kio kwidgetsaddons kwindowsystem
  ];
  propagatedBuildInputs = [ kconfig kpackage qtdeclarative ];
  postInstall = ''
    wrapKDEProgram "$out/bin/kpackagelauncherqml"
  '';
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}