summary refs log tree commit diff
path: root/pkgs/applications/kde/khelpcenter.nix
blob: db68cec976e3ed49b7ff9058e55a9aed5922b8de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  mkDerivation,
  extra-cmake-modules, kdoctools,
  grantlee, kconfig, kcoreaddons, kdbusaddons, ki18n, kinit, kcmutils,
  kdelibs4support, khtml, kservice, xapian
}:

mkDerivation {
  name = "khelpcenter";
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [ ki18n xapian ];
  propagatedBuildInputs = [
    grantlee kdelibs4support khtml kconfig kcoreaddons kdbusaddons
    kinit kcmutils kservice
  ];
}