2016-07-30 03:00:07 +02:00
|
|
|
{
|
2018-03-07 02:28:18 +01:00
|
|
|
stdenv, mkDerivation, lib,
|
2017-05-17 21:26:11 +02:00
|
|
|
extra-cmake-modules, kdoctools,
|
2018-03-07 02:28:18 +01:00
|
|
|
chmlib ? null, discount, djvulibre, ebook_tools, kactivities, karchive, kbookmarks,
|
2018-03-05 06:31:50 +01: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 16:24:00 +02:00
|
|
|
qtdeclarative, qtsvg, threadweaver, kcrash
|
2016-04-21 18:00:51 +02:00
|
|
|
}:
|
|
|
|
|
2017-05-16 17:56:41 +02:00
|
|
|
mkDerivation {
|
|
|
|
name = "okular";
|
2017-05-17 21:26:11 +02:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
2017-05-22 20:49:07 +02:00
|
|
|
buildInputs = [
|
2018-03-07 02:28:18 +01:00
|
|
|
discount djvulibre ebook_tools kactivities karchive kbookmarks
|
2018-03-05 06:31:50 +01: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 16:24:00 +02:00
|
|
|
qtdeclarative qtsvg threadweaver kcrash
|
2018-03-07 02:28:18 +01:00
|
|
|
] ++ lib.optional (!stdenv.isAarch64) chmlib;
|
2018-03-05 06:31:50 +01:00
|
|
|
meta = with lib; {
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = http://www.kde.org;
|
2018-03-05 06:31:50 +01:00
|
|
|
license = with licenses; [ gpl2 lgpl21 fdl12 bsd3 ];
|
|
|
|
maintainers = with maintainers; [ ttuegel ];
|
|
|
|
platforms = lib.platforms.linux;
|
2016-04-21 18:00:51 +02:00
|
|
|
};
|
|
|
|
}
|