nixpkgs/pkgs/applications/kde/okular.nix

27 lines
987 B
Nix
Raw Normal View History

{
2017-05-16 08:56:41 -07:00
mkDerivation, lib,
2017-05-17 12:26:11 -07:00
extra-cmake-modules, 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
}:
2017-05-16 08:56:41 -07:00
mkDerivation {
name = "okular";
2017-05-17 12:26:11 -07:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ djvulibre ebook_tools ];
2017-05-16 08:56:41 -07:00
propagatedBuildInputs = [
2017-05-17 12:26:11 -07:00
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
2017-05-16 08:56:41 -07:00
];
meta = {
platforms = lib.platforms.linux;
homepage = "http://www.kde.org";
license = with lib.licenses; [ gpl2 lgpl21 fdl12 bsd3 ];
maintainers = [ lib.maintainers.ttuegel ];
};
}