mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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>
This commit is contained in:
parent
7ea1bcbd43
commit
355f57390b
1 changed files with 3 additions and 3 deletions
|
@ -1648,7 +1648,7 @@ operate properly.")
|
||||||
(define-public ffmpeg-7
|
(define-public ffmpeg-7
|
||||||
(package
|
(package
|
||||||
(name "ffmpeg")
|
(name "ffmpeg")
|
||||||
(version "7.0.2")
|
(version "7.1.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://ffmpeg.org/releases/ffmpeg-"
|
(uri (string-append "https://ffmpeg.org/releases/ffmpeg-"
|
||||||
|
@ -1706,7 +1706,7 @@ operate properly.")
|
||||||
texinfo
|
texinfo
|
||||||
speex
|
speex
|
||||||
vulkan-headers
|
vulkan-headers
|
||||||
yasm))
|
nasm))
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
#:test-target "fate"
|
#:test-target "fate"
|
||||||
|
@ -1843,7 +1843,7 @@ operate properly.")
|
||||||
(lambda* (#:key outputs configure-flags #:allow-other-keys)
|
(lambda* (#:key outputs configure-flags #:allow-other-keys)
|
||||||
(let ((out (assoc-ref outputs "out")))
|
(let ((out (assoc-ref outputs "out")))
|
||||||
(substitute* "configure"
|
(substitute* "configure"
|
||||||
(("#! /bin/sh") (string-append "#!" (which "sh"))))
|
(("#! */bin/sh") (string-append "#!" (which "sh"))))
|
||||||
(setenv "SHELL" (which "bash"))
|
(setenv "SHELL" (which "bash"))
|
||||||
(setenv "CONFIG_SHELL" (which "bash"))
|
(setenv "CONFIG_SHELL" (which "bash"))
|
||||||
(apply invoke
|
(apply invoke
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue