mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: ffmpeg@4: Fix build.
* gnu/packages/video.scm (ffmpeg-4)[arguments]: Add modules. <#:configure-flags>: Remove flags --enable-libplacebo and --enable-libshaderc. Change-Id: Ib3b69703f74601b1b632dd7f673c0235f1fb6c79
This commit is contained in:
parent
ab915f981a
commit
b234aaf844
1 changed files with 5 additions and 1 deletions
|
@ -1937,8 +1937,12 @@ audio/video codec library.")
|
||||||
(replace "sdl2" sdl2-2.0)))
|
(replace "sdl2" sdl2-2.0)))
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments ffmpeg-5)
|
(substitute-keyword-arguments (package-arguments ffmpeg-5)
|
||||||
|
((#:modules modules %default-gnu-modules)
|
||||||
|
`((srfi srfi-1) ,@modules))
|
||||||
((#:configure-flags flags ''())
|
((#:configure-flags flags ''())
|
||||||
#~(cons "--enable-avresample" #$flags))))))
|
#~(cons "--enable-avresample"
|
||||||
|
(fold delete #$flags '("--enable-libplacebo"
|
||||||
|
"--enable-libshaderc"))))))))
|
||||||
|
|
||||||
(define-public ffmpeg-for-stepmania
|
(define-public ffmpeg-for-stepmania
|
||||||
(hidden-package
|
(hidden-package
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue