c0d5cd0ff9
The autoconf build system for poppler does not support building the wrappers separately, so this slightly enlarges the size of closures. To compensate, the command-line utilities have been separated into their own package.
17 lines
491 B
Nix
17 lines
491 B
Nix
{ stdenv, chmlib, djvulibre, ebook_tools, kde, kdelibs, libspectre, poppler_qt4, qca2
|
|
, qimageblitz, libtiff, kactivities, pkgconfig, libkexiv2 }:
|
|
|
|
kde {
|
|
|
|
# TODO: package activeapp, qmobipocket
|
|
|
|
buildInputs = [ kdelibs chmlib djvulibre ebook_tools libspectre poppler_qt4
|
|
qca2 qimageblitz libtiff kactivities libkexiv2 ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
meta = {
|
|
description = "Okular, the KDE document viewer";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
};
|
|
}
|