guix_mirror_bot pushed a commit to branch mesa-updates in repository guix. commit f7baa2d2835acfa72051f312aa5e06a0c607a4c9 Author: 45mg <45mg.wri...@gmail.com> AuthorDate: Tue Mar 4 17:32:59 2025 +0530
gnu: ffmpeg-7: Update to 7.1.1. * gnu/packages/video.scm (ffmpeg-7): Update to 7.1.1. [phases] {configure}: Don't expect a space in shebang lines; the spaces were removed in FFmpeg commit 67e2f8b6bf5a44fa8083f90096de6131601879b4. [native-inputs]: Replace yasm with nasm. Change-Id: If774bae60713009d7267332959388002bc47daed Signed-off-by: Maxim Cournoyer <ma...@guixotic.coop> --- gnu/packages/video.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 3bd3fa502e..98fbee8fc9 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -1647,7 +1647,7 @@ operate properly.") (define-public ffmpeg-7 (package (name "ffmpeg") - (version "7.0.2") + (version "7.1.1") (source (origin (method url-fetch) (uri (string-append "https://ffmpeg.org/releases/ffmpeg-" @@ -1705,7 +1705,7 @@ operate properly.") texinfo speex vulkan-headers - yasm)) + nasm)) (arguments (list #:test-target "fate" @@ -1842,7 +1842,7 @@ operate properly.") (lambda* (#:key outputs configure-flags #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) (substitute* "configure" - (("#! /bin/sh") (string-append "#!" (which "sh")))) + (("#! */bin/sh") (string-append "#!" (which "sh")))) (setenv "SHELL" (which "bash")) (setenv "CONFIG_SHELL" (which "bash")) (apply invoke