nixpkgs/pkgs/desktops/plasma-5.5/khelpcenter.nix

21 lines
497 B
Nix
Raw Normal View History

2015-11-22 15:31:42 +00:00
{ plasmaPackage, extra-cmake-modules, kdoctools, kconfig
, kcoreaddons, kdbusaddons, ki18n, kinit, kcmutils, kdelibs4support
, khtml, kservice, makeQtWrapper
}:
plasmaPackage {
name = "khelpcenter";
nativeBuildInputs = [
extra-cmake-modules
kdoctools
makeQtWrapper
];
buildInputs = [
kconfig kcoreaddons kdbusaddons kinit kcmutils kservice
];
propagatedBuildInputs = [ kdelibs4support khtml ki18n ];
postInstall = ''
wrapQtProgram "$out/bin/khelpcenter"
'';
}