mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-11 22:36:22 +01:00
gnu: Add rust-want-0.0.
* gnu/packages/crates-io.scm (rust-want-0.0): New variable.
This commit is contained in:
parent
04ddc64a19
commit
a0252a38c9
1 changed files with 28 additions and 8 deletions
|
@ -41650,19 +41650,39 @@ result.")
|
||||||
(description "Detect when another Future wants a result.")
|
(description "Detect when another Future wants a result.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-want-0.0
|
||||||
|
(package
|
||||||
|
(inherit rust-want-0.3)
|
||||||
|
(name "rust-want")
|
||||||
|
(version "0.0.4")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "want" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1l9mbh4a0r2m3s8nckhy1vz9qm6lxsswlgxpimf4pyjkcyb9spd0"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-futures" ,rust-futures-0.1)
|
||||||
|
("rust-log" ,rust-log-0.4)
|
||||||
|
("rust-try-lock" ,rust-try-lock-0.1))))))
|
||||||
|
|
||||||
(define-public rust-wasi-0.9
|
(define-public rust-wasi-0.9
|
||||||
(package
|
(package
|
||||||
(name "rust-wasi")
|
(name "rust-wasi")
|
||||||
(version "0.9.0+wasi-snapshot-preview1")
|
(version "0.9.0+wasi-snapshot-preview1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (crate-uri "wasi" version))
|
(uri (crate-uri "wasi" version))
|
||||||
(file-name
|
(file-name
|
||||||
(string-append name "-" version ".tar.gz"))
|
(string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"06g5v3vrdapfzvfq662cij7v8a1flwr2my45nnncdv2galrdzkfc"))))
|
"06g5v3vrdapfzvfq662cij7v8a1flwr2my45nnncdv2galrdzkfc"))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:skip-build? #t
|
`(#:skip-build? #t
|
||||||
|
|
Loading…
Add table
Reference in a new issue