guix_mirror_bot pushed a commit to branch misc-world-rebuild
in repository guix.

commit 50f562336cb2b326de2cd89a3ebbd47cf067ddf3
Author: SilverlightningY <[email protected]>
AuthorDate: Mon May 25 02:23:12 2026 +0200

    gnu: mlt: Remove frei0r-plugins.
    
    * gnu/packages.video.scm (mlt)[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: I8824b7a4dfc96288d144249630f6d3d68ec304b4
    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 | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 30ed2f606a..c734f9c6c6 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -4117,8 +4117,7 @@ from sites like Twitch.tv and pipes them into a video 
player of choice.")
       #~(modify-phases %standard-phases
           (add-after 'install 'wrap-executable
             (lambda _
-              (let* ((frei0r #$(this-package-input "frei0r-plugins"))
-                     (ladspa #$(this-package-input "ladspa"))
+              (let* ((ladspa #$(this-package-input "ladspa"))
                      ;; In MLT 7, 'melt' symlinks to 'melt-7'.  Try to keep
                      ;; compatibility with MLT 6 where it's only 'melt'.
                      (major #$(version-major version))
@@ -4127,8 +4126,6 @@ from sites like Twitch.tv and pipes them into a video 
player of choice.")
                                (string-append "melt-" major)
                                "melt")))
                 (wrap-program (string-append #$output "/bin/" exec)
-                  `("FREI0R_PATH" ":" =
-                    (,(string-append frei0r "/lib/frei0r-1")))
                   `("LADSPA_PATH" ":" =
                     (,(string-append ladspa "/lib/ladspa"))))))))))
     (inputs
@@ -4138,7 +4135,6 @@ from sites like Twitch.tv and pipes them into a video 
player of choice.")
            eigen ; movit requires.private
            ffmpeg
            fftw
-           frei0r-plugins
            gdk-pixbuf
            gtk+
            jack-1
@@ -4161,7 +4157,11 @@ from sites like Twitch.tv and pipes them into a video 
player of choice.")
            sox
            vidstab))
     (native-inputs
-     (list pkg-config python-minimal swig-4.0))
+     (list frei0r-api pkg-config python-minimal swig-4.0))
+    (native-search-paths
+     (list (search-path-specification
+            (variable "FREI0R_PATH")
+            (files (list "lib/frei0r-1")))))
     (home-page "https://www.mltframework.org/";)
     (synopsis "Author, manage, and run multitrack audio/video compositions")
     (description

Reply via email to