From 30e44861906ce8fc7c4213948234cf6334641307 Mon Sep 17 00:00:00 2001 From: Sughosha Date: Fri, 1 Jul 2022 17:55:37 +0200 Subject: [PATCH 4/4] gnu: Add distrho-ports. * gnu/packages/music.scm (distrho-ports): New variable. --- gnu/packages/music.scm | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 320a87f2c5..351b5760b3 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -6002,6 +6002,44 @@ (define-public mamba ones.") (license license:bsd-0))) +(define-public distrho-ports + (let ((revision "611") (commit "d500be0794bba5dfa734806d8b0b1e6894ec04be")) + (package + (name "distrho-ports") + (version (git-version "0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/DISTRHO/DISTRHO-Ports") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0a0i5ajqww8zpgrgpr1n4r2418l2sakvdz9y7pjwnx8168kmlmpl")))) + (build-system meson-build-system) + (native-inputs (list pkg-config cmake-minimal)) + (inputs (list fftwf + alsa-lib + freetype + libx11 + libxrender + libxext + libxcursor + mesa)) + (home-page "https://github.com/DISTRHO/DISTRHO-Ports") + (synopsis "Linux audio plugins and LV2 ports") + (description + "This package contains GNU/Linux and LV2 ports of the following plugins: +The Function, The Pilgrim, Dexed, dRowAudio plugins (Distortion, Distortion +Shaper, Flanger, Reverb, Tremolo), DrumSynth, EasySSP, EQinox, HiReSam, +JuceOPL, KlangFalter, LUFS Meter, LUFS Meter (Multichannel), Luftikus, Obxd, +PitchedDelay, ReFine, StereoSourceSeperation, Swanky Amp, TAL plugins (Dub-3, +Filter, Filter-2, Noize Mak3r, Reverb, Reverb-II, Reverb-III, Vocoder-II), +Temper, Vex, Vitalium and Wolpertinger") + ;; This package consists of several plugins. + ;; Different copyrights and licenses apply to different plugins. + (license (list license:gpl2 license:lgpl3))))) + (define-public dpf-plugins (package (name "dpf-plugins") -- 2.36.1