nixpkgs/pkgs/applications/kde/khelpcenter.nix

16 lines
367 B
Nix
Raw Normal View History

{
2017-05-16 17:56:41 +02:00
mkDerivation,
2017-05-17 21:26:11 +02:00
extra-cmake-modules, kdoctools,
grantlee, kcmutils, kconfig, kcoreaddons, kdbusaddons, ki18n,
2017-06-21 15:50:10 +02:00
kinit, khtml, kservice, xapian
}:
2017-05-16 17:56:41 +02:00
mkDerivation {
2020-12-25 00:05:07 +01:00
pname = "khelpcenter";
2017-05-17 21:26:11 +02:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2017-06-21 15:50:10 +02:00
buildInputs = [
grantlee kcmutils kconfig kcoreaddons kdbusaddons khtml
2017-06-21 15:50:10 +02:00
ki18n kinit kservice xapian
2017-05-16 17:56:41 +02:00
];
}