91a41170e4
Nix evaulation succeeds (but probably not building everything).
14 lines
294 B
Nix
14 lines
294 B
Nix
{ stdenv, kde, kdelibs, pkgconfig, doxygen, popplerQt4, taglib, exiv2, ffmpeg }:
|
|
|
|
kde {
|
|
buildInputs = [
|
|
kdelibs popplerQt4 taglib exiv2 ffmpeg
|
|
];
|
|
|
|
nativeBuildInputs = [ pkgconfig doxygen ];
|
|
|
|
meta = {
|
|
description = "KFileMetaData";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
};
|
|
}
|