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

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