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.
15 lines
296 B
Nix
15 lines
296 B
Nix
{ stdenv, kde, kdelibs, pkgconfig, doxygen, poppler_qt4, taglib, exiv2, ffmpeg }:
|
|
|
|
kde {
|
|
buildInputs = [
|
|
kdelibs poppler_qt4 taglib exiv2 ffmpeg
|
|
];
|
|
|
|
nativeBuildInputs = [ pkgconfig doxygen ];
|
|
|
|
meta = {
|
|
description = "KFileMetaData";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
};
|
|
}
|