unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Roman Scherer <roman@burningswell.com>
To: 74116@debbugs.gnu.org
Cc: Roman Scherer <roman@burningswell.com>,
	Efraim Flashner <efraim@flashner.co.il>
Subject: [bug#74116] [PATCH 14/16] gnu: Add rust-lv2-0.6.
Date: Wed, 30 Oct 2024 19:56:04 +0100	[thread overview]
Message-ID: <d192088aecfb8a711d27f0651a7295fee4447168.1730314268.git.roman@burningswell.com> (raw)
In-Reply-To: <cover.1730314267.git.roman@burningswell.com>

* gnu/packages/crates-io.scm (rust-lv2-0.6): New variable.

Change-Id: I1364d130e9003a57011499acbf03ba529d4ab49e
---
 gnu/packages/crates-io.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index f21f6f39de..e3b7d53e08 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -40734,6 +40734,36 @@ (define-public rust-lsp-types-0.80
         ("rust-serde-repr" ,rust-serde-repr-0.1)
         ("rust-url" ,rust-url-2))))))
 
+(define-public rust-lv2-0.6
+  (package
+    (name "rust-lv2")
+    (version "0.6.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "lv2" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1xh4hjfh2w5rhzbk0g9845k25f6fxrv7xqpkr09p0x57b200qc41"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:skip-build? #t
+       #:cargo-inputs (("rust-lv2-atom" ,rust-lv2-atom-2)
+                       ("rust-lv2-core" ,rust-lv2-core-3)
+                       ("rust-lv2-midi" ,rust-lv2-midi-1)
+                       ("rust-lv2-state" ,rust-lv2-state-2)
+                       ("rust-lv2-sys" ,rust-lv2-sys-2)
+                       ("rust-lv2-time" ,rust-lv2-time-0.1)
+                       ("rust-lv2-units" ,rust-lv2-units-0.1)
+                       ("rust-lv2-urid" ,rust-lv2-urid-2)
+                       ("rust-lv2-worker" ,rust-lv2-worker-0.1)
+                       ("rust-urid" ,rust-urid-0.1))))
+    (home-page "https://github.com/RustAudio/rust-lv2")
+    (synopsis "Safe, fast, and ergonomic framework to create LV2 plugins in Rust")
+    (description "This package provides a safe, fast, and ergonomic framework
+to create LV2 plugins in Rust.")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-lv2-atom-2
   (package
     (name "rust-lv2-atom")
-- 
2.46.0





  parent reply	other threads:[~2024-10-30 18:58 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-30 18:53 [bug#74116] [PATCH 0/1] Add rust-bankstown-lv2 Roman Scherer
2024-10-30 18:55 ` [bug#74116] [PATCH 01/16] gnu: Add rust-wmidi-3 Roman Scherer
2024-10-30 18:55 ` [bug#74116] [PATCH 02/16] gnu: Add rust-urid-derive-0.1 Roman Scherer
2024-10-30 18:55 ` [bug#74116] [PATCH 03/16] gnu: Add rust-urid-0.1 Roman Scherer
2024-10-30 18:55 ` [bug#74116] [PATCH 04/16] gnu: Add rust-lv2-core-derive-2 Roman Scherer
2024-10-30 18:55 ` [bug#74116] [PATCH 05/16] gnu: Add rust-lv2-sys-2 Roman Scherer
2024-10-30 18:55 ` [bug#74116] [PATCH 06/16] gnu: Add rust-lv2-units-0.1 Roman Scherer
2024-10-30 18:55 ` [bug#74116] [PATCH 07/16] gnu: Add rust-lv2-time-0.1 Roman Scherer
2024-10-30 18:55 ` [bug#74116] [PATCH 08/16] gnu: Add rust-lv2-core-3 Roman Scherer
2024-10-30 18:55 ` [bug#74116] [PATCH 09/16] gnu: Add rust-lv2-worker-0.1 Roman Scherer
2024-10-30 18:56 ` [bug#74116] [PATCH 10/16] gnu: Add rust-lv2-urid-2 Roman Scherer
2024-10-30 18:56 ` [bug#74116] [PATCH 11/16] gnu: Add rust-lv2-atom-2 Roman Scherer
2024-10-30 18:56 ` [bug#74116] [PATCH 12/16] gnu: Add rust-lv2-state-2 Roman Scherer
2024-10-30 18:56 ` [bug#74116] [PATCH 13/16] gnu: Add rust-lv2-midi-1 Roman Scherer
2024-10-30 18:56 ` Roman Scherer [this message]
2024-10-30 18:56 ` [bug#74116] [PATCH 15/16] gnu: Add rust-biquad-0.4 Roman Scherer
2024-10-30 18:56 ` [bug#74116] [PATCH 16/16] gnu: Add rust-bankstown-lv2-1 Roman Scherer

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

  List information: https://guix.gnu.org/

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

  git send-email \
    --in-reply-to=d192088aecfb8a711d27f0651a7295fee4447168.1730314268.git.roman@burningswell.com \
    --to=roman@burningswell.com \
    --cc=74116@debbugs.gnu.org \
    --cc=efraim@flashner.co.il \
    /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 public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).