2016-07-30 01:00:07 +00:00
|
|
|
{
|
2018-03-07 01:28:18 +00:00
|
|
|
stdenv, mkDerivation, lib,
|
2017-05-17 19:26:11 +00:00
|
|
|
extra-cmake-modules, kdoctools,
|
2019-07-05 15:41:41 +00:00
|
|
|
breeze-icons, chmlib ? null, discount, djvulibre, ebook_tools, kactivities,
|
|
|
|
karchive, kbookmarks, kcompletion, kconfig, kconfigwidgets, kcoreaddons,
|
|
|
|
kdbusaddons, kdegraphics-mobipocket, kiconthemes, kjs, khtml, kio, kparts,
|
|
|
|
kpty, kwallet, kwindowsystem, libkexiv2, libspectre, libzip, phonon, poppler,
|
|
|
|
qca-qt5, qtdeclarative, qtsvg, threadweaver, kcrash
|
2016-04-21 16:00:51 +00:00
|
|
|
}:
|
|
|
|
|
2017-05-16 15:56:41 +00:00
|
|
|
mkDerivation {
|
|
|
|
name = "okular";
|
2017-05-17 19:26:11 +00:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
2017-05-22 18:49:07 +00:00
|
|
|
buildInputs = [
|
2019-07-05 15:41:41 +00:00
|
|
|
breeze-icons 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 14:24:00 +00:00
|
|
|
qtdeclarative qtsvg threadweaver kcrash
|
2018-03-07 01:28:18 +00:00
|
|
|
] ++ lib.optional (!stdenv.isAarch64) chmlib;
|
2020-04-27 21:39:11 +00:00
|
|
|
|
|
|
|
# InitialPreference values are too high and end up making okular
|
|
|
|
# default for anything considered text/plain. Resetting to 1, which
|
|
|
|
# is the default.
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace generators/txt/okularApplication_txt.desktop \
|
|
|
|
--replace InitialPreference=3 InitialPreference=1
|
|
|
|
'';
|
|
|
|
|
2018-03-05 05:31:50 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://www.kde.org";
|
2018-03-05 05:31:50 +00:00
|
|
|
license = with licenses; [ gpl2 lgpl21 fdl12 bsd3 ];
|
2020-04-19 10:56:52 +00:00
|
|
|
maintainers = with maintainers; [ ttuegel turion ];
|
2018-03-05 05:31:50 +00:00
|
|
|
platforms = lib.platforms.linux;
|
2016-04-21 16:00:51 +00:00
|
|
|
};
|
|
|
|
}
|