diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2016-05-09 02:26:12 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2016-05-09 02:26:12 +0300 |
commit | 4c7729dc5602d1552df63fa3e8e10db3f5883a44 (patch) | |
tree | af2c2e3b6cbd3d2082b0e9127c10c4d7c9f1bff5 /gnu/packages/video.scm | |
parent | 1d4ac724b8d9fd603b1cf5f430da92a8b6d542f6 (diff) | |
download | guix-4c7729dc5602d1552df63fa3e8e10db3f5883a44.tar guix-4c7729dc5602d1552df63fa3e8e10db3f5883a44.tar.gz |
gnu: mlt: Update to 6.2.0.
* gnu/packages/video.scm (mlt): Update to 6.2.0.
[source]: Download from github.
[inputs]: Add pulseaudio.
Diffstat (limited to 'gnu/packages/video.scm')
-rw-r--r-- | gnu/packages/video.scm | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index acefb917eb..e76db5f1a8 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -1266,14 +1266,15 @@ from various services and pipes them into a video playing application.") (define-public mlt (package (name "mlt") - (version "0.9.8") + (version "6.2.0") (source (origin (method url-fetch) - (uri (string-append "mirror://sourceforge/mlt/mlt/mlt-" - version ".tar.gz")) + (uri (string-append "https://github.com/mltframework/mlt/" + "archive/v" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "0rmrkj7z9g3nr4099f3ff0r14l3ixcfnlx2cdbkqa6pxin0pv9bz")))) + "1zwzfgxrcbwkxnkiwv0a1rzxdnnaly90yyarl9wdw84nx11ffbnx")))) (build-system gnu-build-system) (arguments `(#:tests? #f ; no tests @@ -1299,11 +1300,12 @@ from various services and pipes them into a video playing application.") ("jack" ,jack-1) ("ladspa" ,ladspa) ("libsamplerate" ,libsamplerate) + ("pulseaudio" ,pulseaudio) ("sdl" ,sdl) ("sox" ,sox))) (native-inputs `(("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") (description "MLT is a multimedia framework, designed and developed for television |