46b1cc4f75
New packages: - akonadi - akonadi-contacts - akonadi-mime - kcontacts - kdegraphics-mobipocket - kmime Removed packages: - gpgmepp: now part of gpgme Notable changes: - kgpg: ported from Qt 4 and kdelibs to Qt 5 and Frameworks - okular: ported from Qt 4 and kdelibs to Qt 5 and Frameworks
30 lines
1 KiB
Nix
30 lines
1 KiB
Nix
{
|
|
kdeApp, lib, kdeWrapper,
|
|
ecm, kdoctools,
|
|
djvulibre, ebook_tools, kactivities, karchive, kbookmarks, kcompletion,
|
|
kconfig, kconfigwidgets, kcoreaddons, kdbusaddons, kdegraphics-mobipocket,
|
|
kiconthemes, kjs, khtml, kio, kparts, kpty, kwallet, kwindowsystem, libkexiv2,
|
|
libspectre, poppler, qca-qt5, qtdeclarative, qtsvg, threadweaver
|
|
}:
|
|
|
|
let
|
|
unwrapped = kdeApp {
|
|
name = "okular";
|
|
nativeBuildInputs = [ ecm kdoctools ];
|
|
buildInputs = [
|
|
djvulibre ebook_tools kactivities karchive kbookmarks kcompletion kconfig
|
|
kconfigwidgets kcoreaddons kdbusaddons kdegraphics-mobipocket kiconthemes
|
|
kjs khtml kio kparts kpty kwallet kwindowsystem libkexiv2 libspectre poppler
|
|
qca-qt5 qtdeclarative qtsvg threadweaver
|
|
];
|
|
meta = {
|
|
platforms = lib.platforms.linux;
|
|
homepage = "http://www.kde.org";
|
|
license = with lib.licenses; [ gpl2 lgpl21 fdl12 bsd3 ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
};
|
|
in
|
|
kdeWrapper unwrapped {
|
|
targets = [ "bin/okular" ];
|
|
}
|