kdenlive: Use ffmpeg-full for mlt

This commit is contained in:
Manuel Bärenz 2023-12-07 12:33:28 +01:00
parent 9ec830423e
commit 034ea1399f

View File

@ -36,6 +36,11 @@
, wrapGAppsHook
}:
let
mlt-full = mlt.override {
ffmpeg = ffmpeg-full;
};
in
mkDerivation {
pname = "kdenlive";
nativeBuildInputs = [
@ -60,7 +65,7 @@ mkDerivation {
kplotting
ktextwidgets
mediainfo
mlt
mlt-full
phonon-backend-gstreamer
qtdeclarative
qtmultimedia
@ -81,8 +86,9 @@ mkDerivation {
# https://github.com/NixOS/nixpkgs/issues/83885
patches = [ ./dependency-paths.patch ];
inherit mlt mediainfo;
inherit mediainfo;
ffmpeg = ffmpeg-full;
mlt = mlt-full;
postPatch =
# Module Qt5::Concurrent must be included in `find_package` before it is used.