diff options
author | 45mg <45mg.writes@gmail.com> | 2025-03-04 17:32:59 +0530 |
---|---|---|
committer | John Kehayias <john.kehayias@protonmail.com> | 2025-07-27 11:09:02 -0400 |
commit | 9e7a45b3efbc41e22ce1be6a3a49da745808fc14 (patch) | |
tree | 13d574be0ccf2d5b77fe823560f30845eb2224dc | |
parent | 55392d6f143882bc931a426f8a0933af07e50ae7 (diff) |
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 <maxim@guixotic.coop>
-rw-r--r-- | gnu/packages/video.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index bc3fbe520e..c4211eaf88 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -1644,7 +1644,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-" @@ -1702,7 +1702,7 @@ operate properly.") texinfo speex vulkan-headers - yasm)) + nasm)) (arguments (list #:test-target "fate" @@ -1839,7 +1839,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 |