guix_mirror_bot pushed a commit to branch world-rebuild in repository guix.
commit 13cdb955e3456a2fe22c569a05d27267b11c054c Author: Nguyễn Gia Phong <[email protected]> AuthorDate: Thu Jul 23 11:46:30 2026 +0900 gnu: ffmpeg: Ungraft. * gnu/packages/video.scm (ffmpeg)[replacement]: Remove. (ffmpeg-8.1.2): Delete variable. Merges: https://codeberg.org/guix/guix/pulls/10122 References: 8eaa4d4f9da7 ("gnu: ffmpeg: Graft to 8.1.2.") --- 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 c81680737c..b80d0c1b1e 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -1762,15 +1762,14 @@ operate properly.") (define-public ffmpeg (package (name "ffmpeg") - (version "8.1.1") - (replacement ffmpeg-8.1.2) + (version "8.1.2") (source (origin (method url-fetch) (uri (string-append "https://ffmpeg.org/releases/ffmpeg-" version ".tar.xz")) (sha256 (base32 - "1wzdaaf66233gbfkz07cbbk36qsz3f3n4x0108kg9648x7fkm1mn")))) + "0k2jggcp8akl64i0id5ba64ghancx422zbj5igk13hzhgdgfnjs6")))) (outputs '("out" "debug")) (build-system gnu-build-system) (inputs @@ -2001,18 +2000,6 @@ convert and stream audio and video. It includes the libavcodec audio/video codec library.") (license license:gpl2+))) -(define-public ffmpeg-8.1.2 - (package - (inherit ffmpeg) - (version "8.1.2") - (source - (origin - (method url-fetch) - (uri (string-append "https://ffmpeg.org/releases/ffmpeg-" version - ".tar.xz")) - (sha256 - (base32 "0k2jggcp8akl64i0id5ba64ghancx422zbj5igk13hzhgdgfnjs6")))))) - (define-public ffmpeg-6 (package (inherit ffmpeg)
