mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-20 17:53:26 -05:00
gnu: Add rust-stackvector-1.0.
* gnu/packages/crates-io.scm (rust-stackvector-1.0): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
15466f9acd
commit
a4be6e9c89
1 changed files with 26 additions and 0 deletions
|
@ -7254,6 +7254,32 @@ (define-public rust-stacker-0.1
|
|||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
(define-public rust-stackvector-1.0
|
||||
(package
|
||||
(name "rust-stackvector")
|
||||
(version "1.0.6")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "stackvector" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1bv820fhdad16islwli1g3iksk39ivf0zaqz4j1m08vq15jjaiqw"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-unreachable" ,rust-unreachable-1.0))
|
||||
#:cargo-development-inputs
|
||||
(("rust-rustc-version" ,rust-rustc-version-0.2))))
|
||||
(home-page "https://github.com/Alexhuszagh/rust-stackvector")
|
||||
(synopsis "Vector-like facade for stack-allocated arrays")
|
||||
(description
|
||||
"StackVec: vector-like facade for stack-allocated arrays.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-static-assertions-0.3
|
||||
(package
|
||||
(name "rust-static-assertions")
|
||||
|
|
Loading…
Reference in a new issue