about summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/plasma-5.6/khelpcenter.nix
blob: 3ded239b09b5c3c801353f4d5c67388e9ac61fb4 (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
  ];
  propagatedBuildInputs = [
    kdelibs4support khtml ki18n kconfig kcoreaddons kdbusaddons kinit kcmutils
    kservice
  ];
  postInstall = ''
    wrapQtProgram "$out/bin/khelpcenter"
  '';
}