summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.19/khtml.nix
blob: d40df466ebbdc5ba6a587ca43ede7962e93df6e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ kdeFramework, lib, extra-cmake-modules, giflib, karchive
, kcodecs, kglobalaccel, ki18n, kiconthemes, kio, kjs
, knotifications, kparts, ktextwidgets, kwallet, kwidgetsaddons
, kwindowsystem, kxmlgui, perl, phonon, qtx11extras, sonnet
}:

kdeFramework {
  name = "khtml";
  nativeBuildInputs = [ extra-cmake-modules perl ];
  buildInputs = [
    giflib karchive kiconthemes knotifications kwallet kwidgetsaddons
    kxmlgui phonon
  ];
  propagatedBuildInputs = [
    kcodecs kglobalaccel ki18n kio kjs kparts ktextwidgets
    kwindowsystem qtx11extras sonnet
  ];
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}