guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: Add LV2 mda Piano plugin.


From: Ricardo Wurmus
Subject: 01/03: gnu: Add LV2 mda Piano plugin.
Date: Sat, 28 Feb 2015 21:30:40 +0000

rekado pushed a commit to branch master
in repository guix.

commit 982471276be6042860ad3f36ca62a89afe50f61f
Author: Ricardo Wurmus <address@hidden>
Date:   Wed Feb 11 23:30:50 2015 +0100

    gnu: Add LV2 mda Piano plugin.
    
    * gnu/packages/audio.scm (lv2-mdapiano): New variable.
---
 gnu/packages/audio.scm |   33 +++++++++++++++++++++++++++++++++
 1 files changed, 33 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 52feea3..0460fde 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -498,6 +498,39 @@ add functionality to support the needs of increasingly 
powerful audio
 software.")
     (license license:isc)))
 
+(define-public lv2-mda-piano
+  (package
+    (name "lv2-mda-piano")
+    (version "0.0.2")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url 
"https://gitorious.org/lv2-synths/lv2-mdametapiano.git";)
+                    (commit version)))
+              (sha256
+               (base32
+                "07lywf6lpfpndg3i9w752mmlg2hgn1bwp23h8b0mdj6awh67abqd"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:make-flags (list
+                     "TYPE=mdaPiano"
+                     (string-append "PREFIX=" (assoc-ref %outputs "out")))
+       #:tests? #f ; no check target
+       #:phases (alist-delete 'configure %standard-phases)))
+    (inputs
+     `(("lv2" ,lv2)
+       ("lvtk" ,lvtk)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (native-search-paths
+     (list (search-path-specification
+            (variable "LV2_PATH")
+            (files '("lib/lv2")))))
+    (home-page "http://elephly.net/lv2/mdapiano.html";)
+    (synopsis "LV2 port of the mda Piano plugin")
+    (description "An LV2 port of the mda Piano VSTi.")
+    (license license:gpl3+)))
+
 (define-public lvtk
   (package
     (name "lvtk")



reply via email to

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