mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: Add rust-typemap.
* gnu/packages/crates-io.scm (rust-typemap): New variable.
This commit is contained in:
parent
e8b3d8b0ea
commit
ea6415b787
1 changed files with 22 additions and 0 deletions
|
@ -1760,6 +1760,28 @@ (define-public rust-typeable
|
||||||
(description "Exposes Typeable, for getting TypeIds at runtime.")
|
(description "Exposes Typeable, for getting TypeIds at runtime.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-typemap
|
||||||
|
(package
|
||||||
|
(name "rust-typemap")
|
||||||
|
(version "0.3.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "typemap" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1xm1gbvz9qisj1l6d36hrl9pw8imr8ngs6qyanjnsad3h0yfcfv5"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-unsafe-any" ,rust-unsafe-any))))
|
||||||
|
(home-page "https://github.com/reem/rust-typemap")
|
||||||
|
(synopsis "Typesafe store for many value types")
|
||||||
|
(description
|
||||||
|
"A typesafe store for many value types.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-typenum
|
(define-public rust-typenum
|
||||||
(package
|
(package
|
||||||
(name "rust-typenum")
|
(name "rust-typenum")
|
||||||
|
|
Loading…
Reference in a new issue