mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-23 10:47:24 +01:00
gnu: Add rust-vec-map-0.8.
* gnu/packages/rust-cbindgen.scm (rust-vec-map-0.8): New hidden variable.
This commit is contained in:
parent
0f48c1fed8
commit
e92a94390d
1 changed files with 21 additions and 0 deletions
|
@ -859,3 +859,24 @@ (define rust-unicode-xid-0.2
|
|||
or XID_Continue properties according to Unicode Standard Annex #31.")
|
||||
(properties '((hidden? . #t)))
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define rust-vec-map-0.8
|
||||
(package
|
||||
(name "rust-vec-map")
|
||||
(version "0.8.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "vec_map" version))
|
||||
(file-name (string-append name "-" version ".crate"))
|
||||
(sha256
|
||||
(base32
|
||||
"06n8hw4hlbcz328a3gbpvmy0ma46vg1lc0r5wf55900szf3qdiq5"))))
|
||||
(build-system cargo-build-system)
|
||||
(home-page "https://github.com/contain-rs/vec-map")
|
||||
(synopsis "Simple map based on a vector for small integer keys")
|
||||
(description
|
||||
"This package provides a simple map based on a vector for small integer keys.")
|
||||
(properties '((hidden? . #t)))
|
||||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
|
Loading…
Reference in a new issue