gnu: mlt: Update to 6.2.0.
* gnu/packages/video.scm (mlt): Update to 6.2.0. [source]: Download from github. [inputs]: Add pulseaudio.
This commit is contained in:
parent
1d4ac724b8
commit
4c7729dc56
|
@ -1266,14 +1266,15 @@ from various services and pipes them into a video playing application.")
|
||||||
(define-public mlt
|
(define-public mlt
|
||||||
(package
|
(package
|
||||||
(name "mlt")
|
(name "mlt")
|
||||||
(version "0.9.8")
|
(version "6.2.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://sourceforge/mlt/mlt/mlt-"
|
(uri (string-append "https://github.com/mltframework/mlt/"
|
||||||
version ".tar.gz"))
|
"archive/v" version ".tar.gz"))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0rmrkj7z9g3nr4099f3ff0r14l3ixcfnlx2cdbkqa6pxin0pv9bz"))))
|
"1zwzfgxrcbwkxnkiwv0a1rzxdnnaly90yyarl9wdw84nx11ffbnx"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no tests
|
`(#:tests? #f ; no tests
|
||||||
|
@ -1299,11 +1300,12 @@ from various services and pipes them into a video playing application.")
|
||||||
("jack" ,jack-1)
|
("jack" ,jack-1)
|
||||||
("ladspa" ,ladspa)
|
("ladspa" ,ladspa)
|
||||||
("libsamplerate" ,libsamplerate)
|
("libsamplerate" ,libsamplerate)
|
||||||
|
("pulseaudio" ,pulseaudio)
|
||||||
("sdl" ,sdl)
|
("sdl" ,sdl)
|
||||||
("sox" ,sox)))
|
("sox" ,sox)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("pkg-config" ,pkg-config)))
|
||||||
(home-page "http://www.mltframework.org/")
|
(home-page "https://www.mltframework.org/")
|
||||||
(synopsis "Author, manage, and run multitrack audio/video compositions")
|
(synopsis "Author, manage, and run multitrack audio/video compositions")
|
||||||
(description
|
(description
|
||||||
"MLT is a multimedia framework, designed and developed for television
|
"MLT is a multimedia framework, designed and developed for television
|
||||||
|
|
Loading…
Reference in New Issue