[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/05: gnu: mlt: Add optional dependencies.
From: |
guix-commits |
Subject: |
03/05: gnu: mlt: Add optional dependencies. |
Date: |
Mon, 21 Jun 2021 10:20:59 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 49e8fa4a3d0e170788338dea9a5d2e2fd33adec1
Author: Vinicius Monego <monego@posteo.net>
AuthorDate: Sun Apr 25 18:17:23 2021 +0000
gnu: mlt: Add optional dependencies.
* gnu/packages/video.scm (mlt)[inputs]: Add alsa-plugins:pulseaudio,
libebur128, rtaudio, sdl2, sdl2-image, sox, vidstab. Remove sdl.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
---
gnu/packages/video.scm | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 04c79df..987d75f 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -3014,6 +3014,7 @@ from sites like Twitch.tv and pipes them into a video
player of choice.")
#t)))))
(inputs
`(("alsa-lib" ,alsa-lib)
+ ("alsa-plugins" ,alsa-plugins "pulseaudio")
("ffmpeg" ,ffmpeg)
("fftw" ,fftw)
("frei0r-plugins" ,frei0r-plugins)
@@ -3022,6 +3023,7 @@ from sites like Twitch.tv and pipes them into a video
player of choice.")
("libxml2" ,libxml2)
("jack" ,jack-1)
("ladspa" ,ladspa)
+ ("libebur128" ,libebur128)
("libexif" ,libexif)
("libvorbis" ,libvorbis)
("rubberband" ,rubberband)
@@ -3029,8 +3031,11 @@ from sites like Twitch.tv and pipes them into a video
player of choice.")
("pulseaudio" ,pulseaudio)
("qtbase" ,qtbase-5)
("qtsvg" ,qtsvg)
- ("sdl" ,sdl)
- ("sox" ,sox)))
+ ("rtaudio" ,rtaudio)
+ ("sdl2" ,sdl2)
+ ("sdl2-image" ,sdl2-image)
+ ("sox" ,sox)
+ ("vidstab" ,vidstab)))
(native-inputs
`(("pkg-config" ,pkg-config)))
(home-page "https://www.mltframework.org/")