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

commit fd7e7a9e8c9eee85db106b6a3fa9ef75e4c4bd1c
Author: SilverlightningY <[email protected]>
AuthorDate: Mon May 25 02:26:08 2026 +0200

    gnu: shotcut: Remove frei0r-plugins.
    
    * gnu/packages/video.scm
      (shotcut)[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: Ie4036cc65618b20ed878bf55153d49f717797546
    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 c734f9c6c6..2178ece2ba 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -6502,14 +6502,11 @@ transitions, and effects and then export your film to 
many common formats.")
                   (("\"melt-7\"") (string-append "\"" mlt "/bin/melt-7\""))))))
           (add-after 'install 'wrap-executable
             (lambda _
-             (let ((frei0r #$(this-package-input "frei0r-plugins"))
-                    (jack #$(this-package-input "jack"))
+              (let ((jack #$(this-package-input "jack"))
                     (ladspa #$(this-package-input "ladspa"))
                     (mlt #$(this-package-input "mlt"))
                     (sdl2 #$(this-package-input "sdl2")))
                (wrap-program (string-append #$output "/bin/shotcut")
-                 `("FREI0R_PATH" ":" =
-                   (,(string-append frei0r "/lib/frei0r-1")))
                  `("LADSPA_PATH" ":" =
                    (,(string-append ladspa "/lib/ladspa")))
                  `("LD_LIBRARY_PATH" ":" prefix
@@ -6517,12 +6514,11 @@ transitions, and effects and then export your film to 
many common formats.")
                  `("PATH" ":" prefix
                    ,(list (string-append mlt "/bin"))))))))))
     (native-inputs
-     (list pkg-config python-wrapper qttools vulkan-headers))
+     (list frei0r-api pkg-config python-wrapper qttools vulkan-headers))
     (inputs
      (list bash-minimal
            ffmpeg
            fftw
-           frei0r-plugins
            jack-1
            ladspa
            libxkbcommon
@@ -6535,6 +6531,10 @@ transitions, and effects and then export your film to 
many common formats.")
            qtwebsockets
            sdl2
            vulkan-loader))
+    (native-search-paths
+     (list (search-path-specification
+            (variable "FREI0R_PATH")
+            (files (list "lib/frei0r-1")))))
     (home-page "https://www.shotcut.org/";)
     (synopsis "Video editor built on the MLT framework")
     (description

Reply via email to