gnu: rust-urid: Move to (gnu packages rust-audio).

* gnu/packages/crates-io.scm (rust-urid-0.1, rust-urid-derive-0.1): Move
from here ...
* gnu/packages/crates-audio.scm: ... to here.

Change-Id: Id461b03c53a7e418e6163c07f5365dbc2196a696
This commit is contained in:
Efraim Flashner 2024-12-26 18:59:42 +02:00
parent 1ebc70b453
commit ff70075485
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351
2 changed files with 40 additions and 40 deletions

View file

@ -498,6 +498,46 @@ (define-public rust-portaudio-sys-0.1
I/O library.")
(license license:expat)))
(define-public rust-urid-0.1
(package
(name "rust-urid")
(version "0.1.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "urid" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "195672gs136vczn1r4hkjg5vfa7vdzr26bzv6lwhk0z7cvbvaa38"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-urid-derive" ,rust-urid-derive-0.1))))
(home-page "https://github.com/RustAudio/rust-lv2")
(synopsis "Library for idiomatic URID support")
(description "This package provides Library for idiomatic URID support.")
(license (list license:expat license:asl2.0))))
(define-public rust-urid-derive-0.1
(package
(name "rust-urid-derive")
(version "0.1.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "urid-derive" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0i1nf0sgq4ai051h17s9msaavl3jfzdmdlsy8455pr88y0pfx7l1"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-proc-macro2" ,rust-proc-macro2-1)
("rust-quote" ,rust-quote-1)
("rust-syn" ,rust-syn-1))))
(home-page "https://github.com/RustAudio/rust-lv2")
(synopsis "Procedural macros for urid")
(description "This package provides procedural macros for urid.")
(license (list license:expat license:asl2.0))))
;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances
;;; of a merge conflict, place them above by existing packages with similar

View file

@ -95880,46 +95880,6 @@ (define-public rust-ureq-2
(description "This package provides minimal request library in Rust.")
(license (list license:expat license:asl2.0))))
(define-public rust-urid-0.1
(package
(name "rust-urid")
(version "0.1.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "urid" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "195672gs136vczn1r4hkjg5vfa7vdzr26bzv6lwhk0z7cvbvaa38"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-urid-derive" ,rust-urid-derive-0.1))))
(home-page "https://github.com/RustAudio/rust-lv2")
(synopsis "Library for idiomatic URID support")
(description "This package provides Library for idiomatic URID support.")
(license (list license:expat license:asl2.0))))
(define-public rust-urid-derive-0.1
(package
(name "rust-urid-derive")
(version "0.1.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "urid-derive" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0i1nf0sgq4ai051h17s9msaavl3jfzdmdlsy8455pr88y0pfx7l1"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-proc-macro2" ,rust-proc-macro2-1)
("rust-quote" ,rust-quote-1)
("rust-syn" ,rust-syn-1))))
(home-page "https://github.com/RustAudio/rust-lv2")
(synopsis "Procedural macros for urid")
(description "This package provides procedural macros for urid.")
(license (list license:expat license:asl2.0))))
(define-public rust-url-2
(package
(name "rust-url")