guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 6219f1f657ea800312fc95dd65627de6fec6f42a
Author: Sughosha <[email protected]>
AuthorDate: Wed Dec 4 03:49:34 2024 +0530

    gnu: carla: Add native-search-paths.
    
    * gnu/packages/audio.scm (carla)[native-search-paths]: Add CLAP_PATH,
    LADSPA_PATH, LV2_PATH, LXVST_PATH, VST2_PATH, VST3_PATH, SF1_PATH and 
SFZ_PATH
    variables.
    
    Change-Id: I30af5a75b026eb56de5311a753ad789c093c0556
---
 gnu/packages/audio.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 82e7ae09e0..8543a12180 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -6579,6 +6579,31 @@ as is the case with audio plugins.")
            zlib))
     (native-inputs
      (list pkg-config))
+    (native-search-paths
+       (list (search-path-specification
+              (variable "CLAP_PATH")
+              (files '("lib/clap")))
+             (search-path-specification
+              (variable "LADSPA_PATH")
+              (files '("lib/ladspa")))
+             (search-path-specification
+              (variable "LV2_PATH")
+              (files '("lib/lv2")))
+             (search-path-specification
+              (variable "LXVST_PATH")
+              (files '("lib/lxvst")))
+             (search-path-specification
+              (variable "VST2_PATH")
+              (files '("lib/vst")))
+             (search-path-specification
+              (variable "VST3_PATH")
+              (files '("lib/vst3")))
+             (search-path-specification
+              (variable "SF2_PATH")
+              (files '("share/sf2")))
+             (search-path-specification
+              (variable "SFZ_PATH")
+              (files '("share/sfz")))))
     (home-page "https://kx.studio/Applications:Carla";)
     (synopsis "Audio plugin host")
     (description "Carla is a modular audio plugin host, with features like

Reply via email to