me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-event-listener-3.

* gnu/packages/crates-io.scm (rust-event-listener-3): Add variable and
inherit from rust-event-listener-4.

Change-Id: I84635d1ab1333847c6a3024a88edc1a2d1db5389
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Herman Rimm 2024-01-30 16:25:18 +01:00 committed by Efraim Flashner
parent b71649c204
commit f7817b2c73
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 25 additions and 0 deletions

View File

@ -22107,6 +22107,31 @@ You can use this crate to turn non-blocking data structures into async or
blocking data structures.")
(license (list license:asl2.0 license:expat))))
(define-public rust-event-listener-3
(package
(inherit rust-event-listener-4)
(name "rust-event-listener")
(version "3.1.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "event-listener" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1hihkg6ihvb6p9yi7nq11di8mhd5y0iqv81ij6h0rf0fvsy7ff6r"))))
(arguments
`(#:cargo-inputs
(("rust-concurrent-queue" ,rust-concurrent-queue-2)
("rust-parking" ,rust-parking-2)
("rust-pin-project-lite" ,rust-pin-project-lite-0.2)
("rust-portable-atomic" ,rust-portable-atomic-1)
("rust-portable-atomic-util" ,rust-portable-atomic-util-0.1))
#:cargo-development-inputs
(("rust-criterion" ,rust-criterion-0.4)
("rust-futures-lite" ,rust-futures-lite-2)
("rust-waker-fn" ,rust-waker-fn-1)
("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.3))))))
(define-public rust-event-listener-2
(package
(inherit rust-event-listener-4)