diff options
| author | Sughosha <sughosha@disroot.org> | 2025-11-11 20:12:10 +0530 |
|---|---|---|
| committer | Sughosha <sughosha@disroot.org> | 2025-11-11 20:36:11 +0530 |
| commit | 9b3ed5b6ce3efefd43db1c68f7b9d67fa9aafa29 (patch) | |
| tree | 3a09883ea56dc3204c4f68c4e544496c83e21855 /gnu | |
| parent | db00c1ef7ccb536345a50a5f67ca0ce2a714194a (diff) | |
gnu: qtractor: Add native-search-paths.
* gnu/packages/music.scm (qtractor)[native-search-paths]: Add CLAP_PATH,
LADSPA_PATH, LV2_PATH, LXVST_PATH and VST2_PATH variables.
Change-Id: Ie36061935fa2019e0374b45fd2999bf2447ee40f
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/music.scm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 7143409f7c8..a2a33e8ee7d 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -3759,6 +3759,22 @@ from the command line.") zlib)) (native-inputs (list pkg-config qttools)) + (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/vst2"))))) (home-page "https://qtractor.org/") (synopsis "Audio/MIDI multi-track sequencer") (description |
