[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add mda-lv2.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add mda-lv2. |
Date: |
Mon, 28 Jun 2021 10:50:24 -0400 |
This is an automated email from the git hooks/post-receive script.
efraim pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 77c9c5c gnu: Add mda-lv2.
77c9c5c is described below
commit 77c9c5c103ed2d09a43709bb78bc0b13a399e797
Author: Thorsten Wilms <t_w_@freenet.de>
AuthorDate: Tue Jun 22 13:00:54 2021 +0200
gnu: Add mda-lv2.
* gnu/packages/audio.scm (mda-lv2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
---
gnu/packages/audio.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 038452a..6c9f59b 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -5369,3 +5369,35 @@ Icecast server.")
generator, generating audio signals out of Linux's /dev/dsp audio
device. There is support for mono and/or stereo and 8 or 16 bit samples.")
(license license:gpl2)))
+
+(define-public mda-lv2
+ (package
+ (name "mda-lv2")
+ (version "1.2.6")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "http://download.drobilla.net/mda-lv2-"
+ version ".tar.bz2"))
+ (sha256
+ (base32 "1nspk2j11l65m5r9z5isw8j749vh9a89wgx8mkrrq15f4iq12rnd"))))
+ (build-system waf-build-system)
+ (arguments
+ `(#:tests? #f ; There are no tests.
+ #:configure-flags
+ (list (string-append "--prefix="
+ (assoc-ref %outputs "out")))))
+ (inputs
+ `(("lv2" ,lv2)))
+ (native-inputs
+ `(("pkg-config" ,pkg-config)))
+ (native-search-paths
+ (list (search-path-specification
+ (variable "LV2_PATH")
+ (files '("lib/lv2")))))
+ (home-page "https://drobilla.net/software/mda-lv2")
+ (synopsis "Audio plug-in pack for LV2")
+ (description
+ "MDA-LV2 is an LV2 port of the MDA plugins. It includes effects and a few
+instrument plugins.")
+ (license license:gpl3+)))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add mda-lv2.,
guix-commits <=