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
13932a61ad
commit
231be8d8e0
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.")
|
(description "This library provides async executors.")
|
||||||
(license (list license:asl2.0 license:expat))))
|
(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
|
(define-public rust-async-global-executor-2
|
||||||
(package
|
(package
|
||||||
(name "rust-async-global-executor")
|
(name "rust-async-global-executor")
|
||||||
|
|
Loading…
Reference in a new issue