mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-19 09:22:05 -05:00
gnu: Add rust-no-std-compat-0.4.
* gnu/packages/crates-io.scm (rust-no-std-compat-0.4): New variable.
This commit is contained in:
parent
53006b746a
commit
e4f8a088e0
1 changed files with 25 additions and 0 deletions
|
@ -39351,6 +39351,31 @@ (define-public rust-no-panic-0.1
|
|||
prove a function can't ever panic.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-no-std-compat-0.4
|
||||
(package
|
||||
(name "rust-no-std-compat")
|
||||
(version "0.4.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "no-std-compat" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"132vrf710zsdp40yp1z3kgc2ss8pi0z4gmihsz3y7hl4dpd56f5r"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-hashbrown" ,rust-hashbrown-0.8)
|
||||
("rust-spin" ,rust-spin-0.5))
|
||||
#:cargo-development-inputs
|
||||
(("rust-libc" ,rust-libc-0.2))))
|
||||
(home-page "https://gitlab.com/jD91mZM2/no-std-compat")
|
||||
(synopsis "No_std compatibility layer")
|
||||
(description
|
||||
"This package provides a @code{#![no_std]} compatibility layer that will
|
||||
make porting your crate to no_std *easy*.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-no-std-net-0.5
|
||||
(package
|
||||
(name "rust-no-std-net")
|
||||
|
|
Loading…
Reference in a new issue