diff options
author | Leo Famulari <leo@famulari.name> | 2020-11-08 11:50:26 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2020-11-15 17:50:54 -0500 |
commit | 66a087d5d3dc86d31f99a40b9f5f4faf2e57dfb3 (patch) | |
tree | 1321c7c0e83294f054ee733fefd00c50db5c0bde /gnu | |
parent | e1fa3ea9fe8d01dd124c5e304bde9243876378ba (diff) |
gnu: avidemux: Update to 2.7.6.
* gnu/packages/video.scm (avidemux): Update to 2.7.6.
[arguments]: Adjust to update of bundled FFmpeg.
[inputs]: Add libaom.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/video.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 3e31f73017..8040eaa200 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -2653,7 +2653,7 @@ for use with HTML5 video.") (define-public avidemux (package (name "avidemux") - (version "2.7.4") + (version "2.7.6") (source (origin (method url-fetch) (uri (string-append @@ -2661,7 +2661,7 @@ for use with HTML5 video.") "avidemux_" version ".tar.gz")) (sha256 (base32 - "1acdb3m37vdzzbm8mwyibcn8msi7birb5v30qfi7jli5r00src3x")) + "1kwkn976ppahrcr74bnv6sqx75pzl9y21m1mvr5ksi1m6lgp924s")) (patches (search-patches "avidemux-install-to-lib.patch")))) (build-system cmake-build-system) (native-inputs @@ -2679,6 +2679,7 @@ for use with HTML5 video.") ("glu" ,glu) ("jack" ,jack-1) ("lame" ,lame) + ("libaom" ,libaom) ("libva" ,libva) ("libvdpau" ,libvdpau) ("libvorbis" ,libvorbis) @@ -2693,7 +2694,7 @@ for use with HTML5 video.") #:phases ;; Make sure files inside the included ffmpeg tarball are ;; patch-shebanged. - (let ((ffmpeg "ffmpeg-4.1.4")) + (let ((ffmpeg "ffmpeg-4.2.3")) (modify-phases %standard-phases (add-before 'patch-source-shebangs 'unpack-ffmpeg (lambda _ |