guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 548a1506e15b8d041eeffa1addfe6ace90080c26
Author: Vinicius Monego <[email protected]>
AuthorDate: Sat Feb 21 17:16:50 2026 -0300
gnu: mlt: Update to 7.36.1.
* gnu/packages/video.scm (mlt): Update to 7.36.1.
[arguments]<#:configure-flags>: Pass "-DMOD_DECKLINK=OFF".
Change-Id: I8901b11151938a70b4a426b647c27d63bf935924
---
gnu/packages/video.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 96c34f3258..72530802ee 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -4061,7 +4061,7 @@ from sites like Twitch.tv and pipes them into a video
player of choice.")
(define-public mlt
(package
(name "mlt")
- (version "7.34.1")
+ (version "7.36.1")
(source
(origin
(method git-fetch)
@@ -4070,12 +4070,13 @@ from sites like Twitch.tv and pipes them into a video
player of choice.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "0rwbbcpfr0y3h9p9q596968rx1ynxy50qms1jhsanmyjpw9k82mw"))))
+ (base32 "0kchbyh71bzw28s1hlifd49hqi4p2lliydy4h6xxlpkwi9pjp440"))))
(build-system cmake-build-system)
(arguments
(list
#:tests? #f ;requires "Kwalify"
#:configure-flags #~(list "-DSWIG_PYTHON=On"
+ "-DMOD_DECKLINK=OFF" ; needs nonfree software
"-DMOD_QT6=ON")
#:phases
#~(modify-phases %standard-phases