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