guix_mirror_bot pushed a commit to branch misc-world-rebuild in repository guix.
commit 37b8954ecfa34ba96a17709f61add12137ca0eec Author: SilverlightningY <[email protected]> AuthorDate: Mon May 25 02:27:38 2026 +0200 gnu: ffmpeg: Remove frei0r-plugins. * gnu/packages/video.scm (ffmpeg)[arguments]<#:phases>{wrap-executable}: Remove FREI0R_PATH wrapping. [native-inputs]: Add frei0r-api. [inputs]: Remove frei0r-plugins. [native-search-paths]: Add FREI0R_PATH. Change-Id: Icc4e41258b70062345a88dbcaaa83d1496aa2370 Reviewed-by: Efraim Flashner <[email protected]> Reviewed-by: Sharlatan Hellseher <[email protected]> Reviewed-by: Sughosha <[email protected]> Signed-off-by: Nguyễn Gia Phong <[email protected]> --- gnu/packages/video.scm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 2178ece2ba..8a7a9e0776 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -1785,7 +1785,6 @@ operate properly.") (list dav1d fontconfig freetype - frei0r-plugins gnutls opus ladspa @@ -1824,6 +1823,7 @@ operate properly.") zlib))) (native-inputs (list bc + frei0r-api perl pkg-config texinfo @@ -1986,6 +1986,10 @@ filter-scale2ref_keep_aspect,sws-floatimg-cmp") (path (string-join (map dirname dso) ":"))) (format #t "setting LD_LIBRARY_PATH to ~s~%" path) (setenv "LD_LIBRARY_PATH" path))))))) + (native-search-paths + (list (search-path-specification + (variable "FREI0R_PATH") + (files (list "lib/frei0r-1"))))) (home-page "https://www.ffmpeg.org/") (synopsis "Audio and video framework") (description "FFmpeg is a complete, cross-platform solution to record,
