summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/plasma-5.5/khelpcenter.nix
blob: 6ba860b9dfb26c5490762cc104d3253873b1a968 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ plasmaPackage, extra-cmake-modules, kdoctools, kconfig
, kcoreaddons, kdbusaddons, ki18n, kinit, kcmutils, kdelibs4support
, khtml, kservice, makeQtWrapper
}:

plasmaPackage {
  name = "khelpcenter";
  nativeBuildInputs = [
    extra-cmake-modules
    kdoctools
    makeQtWrapper
  ];
  buildInputs = [
    kconfig kcoreaddons kdbusaddons kinit kcmutils kservice
  ];
  propagatedBuildInputs = [ kdelibs4support khtml ki18n ];
  postInstall = ''
    wrapQtProgram "$out/bin/khelpcenter"
  '';
}