nixpkgs/pkgs/applications/kde/khelpcenter.nix

23 lines
536 B
Nix
Raw Normal View History

{
mkDerivation, kdeWrapper,
extra-cmake-modules, kdoctools,
grantlee, kconfig, kcoreaddons, kdbusaddons, ki18n, kinit, kcmutils,
kdelibs4support, khtml, kservice, xapian
}:
2016-07-30 23:34:42 +01:00
let
unwrapped =
mkDerivation {
2016-07-30 23:34:42 +01:00
name = "khelpcenter";
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2016-07-30 23:34:42 +01:00
buildInputs = [
grantlee kdelibs4support khtml ki18n kconfig kcoreaddons kdbusaddons
kinit kcmutils kservice xapian
];
};
in
kdeWrapper {
inherit unwrapped;
targets = [ "bin/khelpcenter" ];
}