[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add omins-lv2.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add omins-lv2. |
Date: |
Sun, 25 Feb 2024 07:14:49 -0500 |
This is an automated email from the git hooks/post-receive script.
rekado pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 386080366c gnu: Add omins-lv2.
386080366c is described below
commit 386080366c642d887f9156059e4e894cd2d4e9b1
Author: Thorsten Wilms <t_w_@freenet.de>
AuthorDate: Tue Oct 26 14:47:02 2021 +0200
gnu: Add omins-lv2.
* gnu/packages/audio.scm (omins-lv2): New Variable.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
Change-Id: Ica6f11d66331476c65e2d971c6de5f8aacc46454
---
gnu/packages/audio.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index a57c7bb341..578a0bd016 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -1424,6 +1424,35 @@ performances. The plugins include a cellular automaton
synthesizer, an
envelope follower, distortion effects, tape effects and more.")
(license license:gpl2+)))
+(define-public omins-lv2
+ (let ((commit "058f341053067b69a84d4081107fda5058290ff9")
+ (revision "1"))
+ (package
+ (name "omins-lv2")
+ ;; No release despite being perfectly usable. 0.0.0 seems to be the only
+ ;; version the author ever specified:
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://git.drobilla.net/cgit.cgi/omins.lv2.git/")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "01hnx4hhbz3ap3bw15s42q4q1mw1mhdjwygq4550wvjfg6k4ga8w"))))
+ (build-system waf-build-system)
+ (arguments (list #:tests? #false)) ;There are no tests.
+ (inputs (list lv2))
+ (native-inputs (list pkg-config))
+ (home-page "https://git.drobilla.net/cgit.cgi/omins.lv2.git/")
+ (synopsis "LV2 audio plugins for modular synthesis")
+ (description
+ "Omins-lv2 is a small collection of LV2 audio plugins for modular
+synthesis.")
+ (license license:gpl2+))))
+
(define-public snapcast
(package
(name "snapcast")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add omins-lv2.,
guix-commits <=