summary refs log blame commit diff
path: root/pkgs/applications/kde/khelpcenter.nix
blob: e88bef4c652e287aa1eacd73e68bd563d3d98db4 (plain) (tree)
1
2
3
4
5
6
7
8
9
 
                           
                                 

                                                                      

  

             
                  
                           
                                                            





                                                                            



                                  
{
  mkDerivation, kdeWrapper,
  extra-cmake-modules, kdoctools,
  grantlee, kconfig, kcoreaddons, kdbusaddons, ki18n, kinit, kcmutils,
  kdelibs4support, khtml, kservice, xapian
}:

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