mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add rust-heapless-0.6.
* gnu/packages/crates-io.scm (rust-heapless-0.6): New variable. (rust-heapless-0.5): Inherit from above.
This commit is contained in:
parent
131d62cfd2
commit
fdd342e3c5
1 changed files with 29 additions and 7 deletions
|
@ -17680,8 +17680,36 @@ (define-public rust-headers-core-0.1
|
|||
(("rust-bytes" ,rust-bytes-0.4)
|
||||
("rust-http" ,rust-http-0.1))))))
|
||||
|
||||
(define-public rust-heapless-0.6
|
||||
(package
|
||||
(name "rust-heapless")
|
||||
(version "0.6.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "heapless" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "08il083hcffis6km4is24kf2j0cnqs0bzz2b196l495zkk9d8jv3"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-as-slice" ,rust-as-slice-0.1)
|
||||
("rust-generic-array" ,rust-generic-array-0.14)
|
||||
("rust-hash32" ,rust-hash32-0.1)
|
||||
("rust-serde" ,rust-serde-1)
|
||||
("rust-stable-deref-trait" ,rust-stable-deref-trait-1)
|
||||
("rust-ufmt-write" ,rust-ufmt-write-0.1))))
|
||||
(home-page "https://github.com/japaric/heapless")
|
||||
(synopsis "@code{statice} friendly data structures")
|
||||
(description "This package provides @code{static} friendly data structures
|
||||
that don't require dynamic memory allocation.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-heapless-0.5
|
||||
(package
|
||||
(inherit rust-heapless-0.6)
|
||||
(name "rust-heapless")
|
||||
(version "0.5.5")
|
||||
(source
|
||||
|
@ -17692,7 +17720,6 @@ (define-public rust-heapless-0.5
|
|||
(sha256
|
||||
(base32
|
||||
"1h1d6s1f9zn0rz2vkdn0b42kcnkmlpd90yhfyqqhpirv38ws5a3k"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-as-slice" ,rust-as-slice-0.1)
|
||||
|
@ -17703,12 +17730,7 @@ (define-public rust-heapless-0.5
|
|||
("rust-ufmt-write" ,rust-ufmt-write-0.1))
|
||||
#:cargo-development-inputs
|
||||
(("rust-scoped-threadpool" ,rust-scoped-threadpool-0.1)
|
||||
("rust-ufmt" ,rust-ufmt-0.1))))
|
||||
(home-page "https://github.com/japaric/heapless")
|
||||
(synopsis "@code{statice} friendly data structures")
|
||||
(description "This package provides @code{static} friendly data structures
|
||||
that don't require dynamic memory allocation.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
("rust-ufmt" ,rust-ufmt-0.1))))))
|
||||
|
||||
(define-public rust-heapsize-0.4
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue