gnu: Add rust-async-lock-2.

* gnu/packages/crates-io.scm (rust-async-lock-2): New variable.
This commit is contained in:
Nicolas Goaziou 2021-02-10 17:01:48 +01:00
parent 9f2426213a
commit 65005797c0
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -2601,6 +2601,27 @@ (define-public rust-async-io-1
that expires at a point in time.")
(license (list license:asl2.0 license:expat))))
(define-public rust-async-lock-2
(package
(name "rust-async-lock")
(version "2.3.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "async-lock" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1yrvnshs94aiimvprqkhcg1z7x9abzsja8f4ifcakr5x6abn15hr"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-event-listener" ,rust-event-listener-2))))
(home-page "https://github.com/stjepang/async-lock")
(synopsis "Async synchronization primitives")
(description "This package provides Async synchronization primitives.")
(license (list license:asl2.0 license:expat))))
(define-public rust-async-log-1
(package
(name "rust-async-log")