summary refs log tree commit diff
path: root/pkgs/applications/kde/okular.nix
blob: 36573f9aeb9e52a78f5398f5dd72b939e2b65e5c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  mkDerivation, lib,
  extra-cmake-modules, kdoctools,
  chmlib, 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
}:

mkDerivation {
  name = "okular";
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [
    chmlib 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
  ];
  meta = with lib; {
    homepage = http://www.kde.org;
    license = with licenses; [ gpl2 lgpl21 fdl12 bsd3 ];
    maintainers = with maintainers; [ ttuegel ];
    platforms = lib.platforms.linux;
  };
}