guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#63065] [PATCH 05/18] gnu: Add clap.


From: Sughosha
Subject: [bug#63065] [PATCH 05/18] gnu: Add clap.
Date: Tue, 25 Apr 2023 09:29:08 +0000

* gnu/packages/audio.scm (clap): New variable.
---
 gnu/packages/audio.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index cf7fcd87c8..14c1ebbd92 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -2702,6 +2702,27 @@ (define-public jalv
 plugin function as a JACK application.")
     (license license:isc)))
 
+(define-public clap
+  (package
+    (name "clap")
+    (version "1.1.7") ;yabridge requires clap 1.1.7
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/free-audio/clap";)
+                    (commit version)))
+              (sha256
+               (base32
+                "1afjvllmzf2xmrpy8mcxk7zhii93b447ciaqw9lkj2wh9z217hsr"))))
+    (build-system cmake-build-system)
+    (synopsis "Audio Plugin API")
+    (description
+     "CLAP stands for CLever Audio Plugin.  It is an audio plugin ABI which
+defines a standard for Digital Audio Workstations and audio plugins to work
+together.")
+    (home-page "https://cleveraudio.org/";)
+    (license license:expat)))
+
 (define-public ladspa
   (package
     (name "ladspa")
-- 
2.39.2






reply via email to

[Prev in Thread] Current Thread [Next in Thread]