1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/desktops/kde-5/plasma-5.6/khelpcenter.nix
2016-04-30 12:20:37 -05:00

21 lines
480 B
Nix

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