mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
17 lines
484 B
Nix
17 lines
484 B
Nix
{
|
|
mkDerivation, lib, copyPathsToStore,
|
|
extra-cmake-modules,
|
|
attr, ebook_tools, exiv2, ffmpeg, karchive, ki18n, poppler, qtbase, qtmultimedia, taglib
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kfilemetadata";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
attr ebook_tools exiv2 ffmpeg karchive ki18n poppler qtbase qtmultimedia
|
|
taglib
|
|
];
|
|
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
|
|
}
|