gnu: rust-cpal-0.13: Accept any version of jack.

* gnu/packages/crates-io.scm (rust-cpal-0.13)[source]: Add snippet to
force accepting any version of the jack crate.

Change-Id: Ic9bf0ad8434eeb02b3ff8d6373155a40851d3402
This commit is contained in:
Efraim Flashner 2023-10-24 14:23:55 +03:00
parent 81d7b81643
commit f8dfe85a36
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -16162,7 +16162,18 @@ (define-public rust-cpal-0.13
(uri (crate-uri "cpal" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "05j11vz8rw19gqqvpd48i7wvm6j77v8fwx5lwhlkckqjllv7h4bl"))))
(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)