all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Alexandros Theodotou <alex@zrythm.org>
To: 40471@debbugs.gnu.org
Subject: [bug#40471] [PATCH] gnu: Add lsp-plugins.
Date: Tue, 07 Apr 2020 21:08:07 +0100	[thread overview]
Message-ID: <2ba1186e3cdefb109e293aba0337c95ab6cea6f4.camel@zrythm.org> (raw)
In-Reply-To: <5e2c5de3bd13ab94f1a9fc48f65e002b75cde9df.camel@zrythm.org>


[-- Attachment #1.1: Type: text/plain, Size: 25 bytes --]

Oops, here's the patch.

[-- Attachment #1.2: 0001-gnu-Add-lsp-plugins.patch --]
[-- Type: text/x-patch, Size: 2277 bytes --]

From 5426409d1d392b8f5fab184a64526d597dd690fa Mon Sep 17 00:00:00 2001
From: Alexandros Theodotou <alex@zrythm.org>
Date: Mon, 6 Apr 2020 16:07:19 +0100
Subject: [PATCH] gnu: Add lsp-plugins.

* gnu/packages/music.scm (lsp-plugins): new variable.
---
 gnu/packages/music.scm | 43 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index ee402bad4d..41c93c5a90 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -5380,3 +5380,46 @@ filtered, pitch shifted and ultimately disintegrated.  This is an unofficial
 port of the Regrader plugin created by Igorski.  It is available as an LV2
 plugin and a standalone JACK application.")
     (license license:expat)))
+
+(define-public lsp-plugins
+  (package
+    (name "lsp-plugins")
+    (version "1.1.17")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/sadko4u/lsp-plugins.git")
+               (commit (string-append "lsp-plugins-" version))))
+        (file-name (git-file-name name version))
+        (sha256
+          (base32
+            "04w3lhnbnfynrr3zpcr7cdrlddxa6v3mdmj7rvbxi2xbczbqpa15"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:make-flags
+       (list "CC=gcc" "BUILD_MODULES=\"lv2 ladspa jack\"" "VST_UI=0"
+             (string-append "PREFIX=" (assoc-ref %outputs "out"))
+             (string-append "ETC_PATH=" (assoc-ref %outputs "out") "/etc"))
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'configure) ; no configure
+         (replace 'check
+           (lambda _
+             (invoke "make" "test"))))))
+    (inputs
+      `(("cairo", cairo)
+        ("hicolor-icon-theme", hicolor-icon-theme)
+        ("jack", jack-1)
+        ("ladspa", ladspa)
+        ("libsndfile", libsndfile)
+        ("lv2", lv2)
+        ("mesa", mesa)))
+    (native-inputs
+      `(("pkg-config", pkg-config)))
+    (synopsis "Audio plugin collection")
+    (description "LSP (Linux Studio Plugins) is a collection of audio
+plugins available as LADSPA/LV2 plugins and as standalone JACK
+applications.")
+    (home-page "https://lsp-plug.in/")
+    (license license:lgpl3)))
-- 
2.26.0


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

  reply	other threads:[~2020-04-07 20:09 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-06 15:08 [bug#40471] [PATCH] gnu: Add lsp-plugins Alexandros Theodotou
2020-04-07 20:08 ` Alexandros Theodotou [this message]
2020-05-06 19:55   ` Efraim Flashner
2020-05-27  0:06     ` Alexandros Theodotou
2020-05-27  9:25       ` bug#40471: " Efraim Flashner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=2ba1186e3cdefb109e293aba0337c95ab6cea6f4.camel@zrythm.org \
    --to=alex@zrythm.org \
    --cc=40471@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.