kdenlive: Use ffmpeg-full for mlt
This commit is contained in:
parent
9ec830423e
commit
034ea1399f
1 changed files with 8 additions and 2 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue