summary refs log tree commit diff
path: root/pkgs/applications/kde/khelpcenter.nix
blob: 3f13d131c77aae376cad641c64eea487e28a026d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  kdeApp, kdeWrapper,
  ecm, kdoctools,
  grantlee, kconfig, kcoreaddons, kdbusaddons, ki18n, kinit, kcmutils,
  kdelibs4support, khtml, kservice, xapian
}:

let
  unwrapped =
    kdeApp {
      name = "khelpcenter";
      nativeBuildInputs = [ ecm kdoctools ];
      buildInputs = [
        grantlee kdelibs4support khtml ki18n kconfig kcoreaddons kdbusaddons
        kinit kcmutils kservice xapian
      ];
    };
in
kdeWrapper {
  inherit unwrapped;
  targets = [ "bin/khelpcenter" ];
}