guix_mirror_bot pushed a commit to branch world-rebuild in repository guix.
commit 45bc0574a7ff9ca5bf77a39ca63488bba43ab992 Author: Nguyễn Gia Phong <[email protected]> AuthorDate: Thu Jul 23 11:46:30 2026 +0900 gnu: ffmpeg: Ungraft. * gnu/packages/video.scm (ffmpeg): Update to 8.1.2. [replacement]: Unset. (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 b95d5994f8..81dc9cac9f 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -1747,15 +1747,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 @@ -1986,18 +1985,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)
