guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/03: gnu: kdenlive: Add dependency on ladspa.


From: guix-commits
Subject: 02/03: gnu: kdenlive: Add dependency on ladspa.
Date: Fri, 4 Mar 2022 17:23:10 -0500 (EST)

monego pushed a commit to branch master
in repository guix.

commit 4e1f20b43e5345a4ce5d2e8b37b5b24280b4b277
Author: Vinicius Monego <monego@posteo.net>
AuthorDate: Fri Mar 4 18:15:36 2022 -0300

    gnu: kdenlive: Add dependency on ladspa.
    
    * gnu/packages/kde.scm (kdenlive)[inputs]: Add ladspa.
    [arguments]<#:phases>: Wrap LADSPA_PATH in the 'wrap-executable phase.
---
 gnu/packages/kde.scm | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm
index 4946cf1b3a..9328722e94 100644
--- a/gnu/packages/kde.scm
+++ b/gnu/packages/kde.scm
@@ -244,14 +244,17 @@ browser for easy news reading.")
          (add-after 'install 'wrap-executable
            (lambda* (#:key inputs outputs #:allow-other-keys)
              (let* ((out (assoc-ref outputs "out"))
-                    (qtbase (assoc-ref inputs "qtbase"))
+                    (ffmpeg (assoc-ref inputs "ffmpeg"))
                     (frei0r (assoc-ref inputs "frei0r-plugins"))
-                    (ffmpeg (assoc-ref inputs "ffmpeg")))
+                    (ladspa (assoc-ref inputs "ladspa"))
+                    (qtbase (assoc-ref inputs "qtbase")))
                (wrap-program (string-append out "/bin/kdenlive")
                  `("PATH" ":" prefix
                    ,(list (string-append ffmpeg "/bin")))
                  `("FREI0R_PATH" ":" =
-                   (,(string-append frei0r "/lib/frei0r-1/")))
+                   (,(string-append frei0r "/lib/frei0r-1")))
+                 `("LADSPA_PATH" ":" =
+                   (,(string-append ladspa "/lib/ladspa")))
                  `("QT_QPA_PLATFORM_PLUGIN_PATH" ":" =
                    (,(string-append qtbase "/lib/qt5/plugins/platforms")))
                  `("MLT_PREFIX" ":" =
@@ -277,6 +280,7 @@ browser for easy news reading.")
            knotifyconfig
            kparts
            kplotting
+           ladspa
            mlt
            purpose
            qtbase-5



reply via email to

[Prev in Thread] Current Thread [Next in Thread]