159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
15 lines
316 B
Nix
15 lines
316 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules,
|
|
ffmpeg_7, kio, taglib
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "ffmpegthumbs";
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2 bsd3 ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ ffmpeg_7 kio taglib ];
|
|
}
|