summary refs log tree commit diff
path: root/pkgs/development/libraries/mlt
diff options
context:
space:
mode:
authorManuel Bärenz <m.baerenz@sonnen.de>2022-11-17 18:56:16 +0100
committerManuel Bärenz <programming@manuelbaerenz.de>2022-11-24 11:34:10 +0100
commit0676b5af6964518cc6c6820da7ccf83843b08572 (patch)
tree3a135561289dea228484fe268403ade4279bba00 /pkgs/development/libraries/mlt
parentedf9128c17b473cd56728108a9ba241abe44c4c4 (diff)
downloadnixpkgs-0676b5af6964518cc6c6820da7ccf83843b08572.tar
nixpkgs-0676b5af6964518cc6c6820da7ccf83843b08572.tar.gz
nixpkgs-0676b5af6964518cc6c6820da7ccf83843b08572.tar.bz2
nixpkgs-0676b5af6964518cc6c6820da7ccf83843b08572.tar.lz
nixpkgs-0676b5af6964518cc6c6820da7ccf83843b08572.tar.xz
nixpkgs-0676b5af6964518cc6c6820da7ccf83843b08572.tar.zst
nixpkgs-0676b5af6964518cc6c6820da7ccf83843b08572.zip
mlt: Add rubberband support
Diffstat (limited to 'pkgs/development/libraries/mlt')
-rw-r--r--pkgs/development/libraries/mlt/default.nix4
-rw-r--r--pkgs/development/libraries/mlt/qt-5.nix2
2 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/libraries/mlt/default.nix b/pkgs/development/libraries/mlt/default.nix
index bd83e1caf57..f57ac10468b 100644
--- a/pkgs/development/libraries/mlt/default.nix
+++ b/pkgs/development/libraries/mlt/default.nix
@@ -1,7 +1,7 @@
 { lib, stdenv, fetchFromGitHub, makeWrapper
 , SDL, ffmpeg_4, frei0r, libjack2, libdv, libsamplerate, libexif
 , libvorbis, libxml2, movit, pkg-config, sox, fftw, opencv4, SDL2
-, gtk2, gitUpdater, libebur128
+, gtk2, gitUpdater, libebur128, rubberband
 , jack2, ladspa-sdk, swig, which, ncurses
 , enablePython ? false, python3
 }:
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
   buildInputs = [
     SDL ffmpeg_4 frei0r libjack2 libdv libsamplerate libvorbis libxml2.dev
     movit sox libexif gtk2 fftw libebur128 opencv4 SDL2 jack2
-    ladspa-sdk
+    ladspa-sdk rubberband
   ] ++ lib.optional enablePython ncurses;
 
   nativeBuildInputs = [ pkg-config makeWrapper which ]
diff --git a/pkgs/development/libraries/mlt/qt-5.nix b/pkgs/development/libraries/mlt/qt-5.nix
index dad94c29d72..40c81170fa4 100644
--- a/pkgs/development/libraries/mlt/qt-5.nix
+++ b/pkgs/development/libraries/mlt/qt-5.nix
@@ -20,6 +20,7 @@
 , ladspa-sdk
 , gitUpdater
 , ladspaPlugins
+, rubberband
 , mkDerivation
 , which
 }:
@@ -53,6 +54,7 @@ mkDerivation rec {
     opencv3
     ladspa-sdk
     ladspaPlugins
+    rubberband
   ];
 
   nativeBuildInputs = [ cmake which pkg-config ];