1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 11:00:36 +02:00

gnu: rust-cpal: Move to (gnu packages crates-audio).

* gnu/packages/crates-io.scm (rust-cpal-0.13): Move from here ...
* gnu/packages/crates-audio.scm: ... to here.

Change-Id: Ie264750c7454cc347b6529b21328af1c5aa19fd3
This commit is contained in:
Efraim Flashner 2024-12-26 19:17:59 +02:00
parent 57d632bc53
commit f7567ef77b
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351
2 changed files with 61 additions and 57 deletions

View file

@ -18067,63 +18067,6 @@ in @code{no_std}. Alloc support is optional.")
"check-cfg = ['cfg(coverage_nightly)'] }"
"\n" "\n" all)))))))))
(define-public rust-cpal-0.13
(package
(name "rust-cpal")
(version "0.13.5")
(source
(origin
(method url-fetch)
(uri (crate-uri "cpal" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "05j11vz8rw19gqqvpd48i7wvm6j77v8fwx5lwhlkckqjllv7h4bl"))
(snippet
#~(begin (use-modules (guix build utils))
;; Force cpal-0.13.5 to accept any version of jack, so
;; that other packages like librespot-playback can use
;; the one they want.
(substitute* "Cargo.toml.orig"
(("(jack = \\{ version = \").*(\", optional.*)" _ jack optional)
(string-append jack "*" optional))
;; Remove path for asio-sys, use packaged crate.
((", path =.*,") ","))
(copy-file "Cargo.toml.orig" "Cargo.toml")))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-alsa" ,rust-alsa-0.6)
("rust-asio-sys" ,rust-asio-sys-0.2)
("rust-core-foundation-sys" ,rust-core-foundation-sys-0.8)
("rust-coreaudio-rs" ,rust-coreaudio-rs-0.10)
("rust-jack" ,rust-jack-0.8)
("rust-jni" ,rust-jni-0.19)
("rust-js-sys" ,rust-js-sys-0.3)
("rust-lazy-static" ,rust-lazy-static-1)
("rust-libc" ,rust-libc-0.2)
("rust-mach" ,rust-mach-0.3)
("rust-ndk" ,rust-ndk-0.6)
("rust-ndk-glue" ,rust-ndk-glue-0.6)
("rust-nix" ,rust-nix-0.23)
("rust-num-traits" ,rust-num-traits-0.2)
("rust-oboe" ,rust-oboe-0.4)
("rust-parking-lot" ,rust-parking-lot-0.11)
("rust-stdweb" ,rust-stdweb-0.1)
("rust-thiserror" ,rust-thiserror-1)
("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)
("rust-web-sys" ,rust-web-sys-0.3)
("rust-winapi" ,rust-winapi-0.3))
#:cargo-development-inputs (("rust-anyhow" ,rust-anyhow-1)
("rust-clap" ,rust-clap-3)
("rust-hound" ,rust-hound-3)
("rust-ringbuf" ,rust-ringbuf-0.2))))
(native-inputs (list pkg-config))
(inputs (list alsa-lib))
(home-page "https://github.com/rustaudio/cpal")
(synopsis "Low-level cross-platform audio I/O library in pure Rust")
(description "Low-level cross-platform audio I/O library in pure Rust.
Supports Linux through either JACK or ALSA.")
(license license:asl2.0)))
(define-public rust-cpp-demangle-0.4
(package
(name "rust-cpp-demangle")