19 lines
479 B
Nix
19 lines
479 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules,
|
|
attr, ebook_tools, exiv2, ffmpeg_3, karchive, kcoreaddons, ki18n, poppler, qtbase, qtmultimedia, taglib
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kfilemetadata";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
attr ebook_tools exiv2 ffmpeg_3 karchive kcoreaddons ki18n poppler qtbase qtmultimedia
|
|
taglib
|
|
];
|
|
patches = [
|
|
./cmake-install-paths.patch
|
|
];
|
|
}
|