diff options
-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 |