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.
21 lines
417 B
Nix
21 lines
417 B
Nix
{ stdenv, kde, kdelibs, soprano, shared_desktop_ontologies, exiv2, ffmpeg, taglib, poppler_qt4
|
|
, pkgconfig, doxygen, ebook_tools
|
|
}:
|
|
|
|
kde {
|
|
|
|
# TODO: qmobipocket
|
|
|
|
buildInputs = [
|
|
kdelibs soprano shared_desktop_ontologies taglib exiv2 ffmpeg
|
|
poppler_qt4 ebook_tools
|
|
];
|
|
|
|
nativeBuildInputs = [ pkgconfig doxygen ];
|
|
|
|
meta = {
|
|
description = "NEPOMUK core";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
};
|
|
}
|