mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 04:37:36 -05:00
gnu: Add rust-async-fs-1.
* gnu/packages/crates-io.scm (rust-async-fs-1): New variable.
This commit is contained in:
parent
ec2fd9863d
commit
f011a11c1c
1 changed files with 23 additions and 0 deletions
|
@ -3427,6 +3427,29 @@ (define-public rust-async-executor-1
|
|||
(description "This library provides async executors.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-async-fs-1
|
||||
(package
|
||||
(name "rust-async-fs")
|
||||
(version "1.5.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "async-fs" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1qnsqg0jjpda590w8nvbhh5mcmdyx5f43xx2g313fz0izzwa8g4b"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-async-lock" ,rust-async-lock-2)
|
||||
("rust-blocking" ,rust-blocking-1)
|
||||
("rust-futures-lite" ,rust-futures-lite-1))))
|
||||
(home-page "https://github.com/stjepang/async-fs")
|
||||
(synopsis "Async filesystem primitives in Rust")
|
||||
(description "This package provides async filesystem primitives.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-async-global-executor-2
|
||||
(package
|
||||
(name "rust-async-global-executor")
|
||||
|
|
Loading…
Reference in a new issue