guix_mirror_bot pushed a commit to branch world-rebuild in repository guix.
commit 7a51b6db94b6dc2afc048a04dc2fca422d30dca8 Author: Nguyễn Gia Phong <[email protected]> AuthorDate: Thu Jul 23 11:52:09 2026 +0900 gnu: ffmpeg-4: Ungraft. * gnu/packages/video.scm (ffmpeg-4)[replacement]: Remove. (ffmpeg-4.4.8): Delete variable. Merges: https://codeberg.org/guix/guix/pulls/10122 References: ("gnu: ffmpeg-4: Graft to 4.4.8.") --- gnu/packages/video.scm | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 278cb1dbdb..7d2e74de53 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -2058,33 +2058,20 @@ audio/video codec library.") (define-public ffmpeg-4 (package (inherit ffmpeg-5) - (version "4.4.7") - (replacement ffmpeg-4.4.8) + (version "4.4.8") (source (origin (method url-fetch) (uri (string-append "https://ffmpeg.org/releases/ffmpeg-" version ".tar.xz")) (sha256 (base32 - "0ajyaq93785vf9pk8fkzcnwnfki6fw6n2zbkms50l2h5mz8ddrrr")))) + "1hrr3iz9nb6xs005amc30hw46ddwzxm2ffxywyp9wg98mv24hf67")))) (arguments (substitute-keyword-arguments arguments ((#:configure-flags flags ''()) #~(cons "--enable-avresample" (fold delete #$flags '("--enable-libshaderc")))))))) -(define-public ffmpeg-4.4.8 - (package - (inherit ffmpeg-4) - (version "4.4.8") - (source - (origin - (method url-fetch) - (uri (string-append "https://ffmpeg.org/releases/ffmpeg-" version - ".tar.xz")) - (sha256 - (base32 "1hrr3iz9nb6xs005amc30hw46ddwzxm2ffxywyp9wg98mv24hf67")))))) - ;;; Custom ffmpeg package used by Jami, which incorporates custom patches. (define-public ffmpeg-jami (let ((ffmpeg ffmpeg-6))
