2016-07-30 02:00:07 +01:00
|
|
|
{
|
2018-03-07 01:28:18 +00:00
|
|
|
stdenv, mkDerivation, lib,
|
2017-05-17 20:26:11 +01:00
|
|
|
extra-cmake-modules, kdoctools,
|
2018-03-07 01:28:18 +00:00
|
|
|
chmlib ? null, discount, djvulibre, ebook_tools, kactivities, karchive, kbookmarks,
|
2018-03-05 05:31:50 +00:00
|
|
|
kcompletion, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons,
|
|
|
|
kdegraphics-mobipocket, kiconthemes, kjs, khtml, kio, kparts, kpty, kwallet,
|
|
|
|
kwindowsystem, libkexiv2, libspectre, libzip, phonon, poppler, qca-qt5,
|
2018-04-20 15:24:00 +01:00
|
|
|
qtdeclarative, qtsvg, threadweaver, kcrash
|
2016-04-21 17:00:51 +01:00
|
|
|
}:
|
|
|
|
|
2017-05-16 16:56:41 +01:00
|
|
|
mkDerivation {
|
|
|
|
name = "okular";
|
2017-05-17 20:26:11 +01:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
2017-05-22 19:49:07 +01:00
|
|
|
buildInputs = [
|
2018-03-07 01:28:18 +00:00
|
|
|
discount djvulibre ebook_tools kactivities karchive kbookmarks
|
2018-03-05 05:31:50 +00:00
|
|
|
kcompletion kconfig kconfigwidgets kcoreaddons kdbusaddons
|
|
|
|
kdegraphics-mobipocket kiconthemes kjs khtml kio kparts kpty kwallet
|
|
|
|
kwindowsystem libkexiv2 libspectre libzip phonon poppler qca-qt5
|
2018-04-20 15:24:00 +01:00
|
|
|
qtdeclarative qtsvg threadweaver kcrash
|
2018-03-07 01:28:18 +00:00
|
|
|
] ++ lib.optional (!stdenv.isAarch64) chmlib;
|
2018-03-05 05:31:50 +00:00
|
|
|
meta = with lib; {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://www.kde.org;
|
2018-03-05 05:31:50 +00:00
|
|
|
license = with licenses; [ gpl2 lgpl21 fdl12 bsd3 ];
|
|
|
|
maintainers = with maintainers; [ ttuegel ];
|
|
|
|
platforms = lib.platforms.linux;
|
2016-04-21 17:00:51 +01:00
|
|
|
};
|
|
|
|
}
|