01d4e2fe33
After making `ffmpeg` point to the latest `ffmpeg_4`, all packages that used `ffmpeg` without requiring a specific version now use ffmpeg_3 explicitly so they shouldn't change.
16 lines
300 B
Nix
16 lines
300 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules,
|
|
ffmpeg_3, kio
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "ffmpegthumbs";
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2 bsd3 ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ ffmpeg_3 kio ];
|
|
}
|