mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-15 03:15:09 -05:00
gnu: Add rust-relay-0.1.
* gnu/packages/crates-io.scm (rust-relay-0.1): New variable.
This commit is contained in:
parent
034afd45e2
commit
50d2c16a74
1 changed files with 22 additions and 0 deletions
|
@ -28707,6 +28707,28 @@ (define-public rust-relative-path-1
|
|||
(description "This package provides portable, relative paths for Rust.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-relay-0.1
|
||||
(package
|
||||
(name "rust-relay")
|
||||
(version "0.1.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "relay" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "16j8y57rjrfy3h5xfi9fwfbjs1nka3iifi52rvp9szldd21f6xhm"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-futures" ,rust-futures-0.1))))
|
||||
(home-page "")
|
||||
(synopsis "Lightweight oneshot Future channel")
|
||||
(description
|
||||
"This package provides a lightweight oneshot Future channel.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-remove-dir-all-0.5
|
||||
(package
|
||||
(name "rust-remove-dir-all")
|
||||
|
|
Loading…
Reference in a new issue