mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add rust-typeable.
* gnu/packages/crates-io.scm (rust-typeable): New variable.
This commit is contained in:
parent
5a77fcca3f
commit
ce71b229ec
1 changed files with 18 additions and 0 deletions
|
@ -1687,6 +1687,24 @@ (define-public rust-try-lock
|
|||
"This package provides a lightweight atomic lock.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-typeable
|
||||
(package
|
||||
(name "rust-typeable")
|
||||
(version "0.1.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "typeable" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"11w8dywgnm32hb291izjvh4zjd037ccnkk77ahk63l913zwzc40l"))))
|
||||
(build-system cargo-build-system)
|
||||
(home-page "https://github.com/reem/rust-typeable")
|
||||
(synopsis "Exposes Typeable, for getting TypeIds at runtime")
|
||||
(description "Exposes Typeable, for getting TypeIds at runtime.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-typenum
|
||||
(package
|
||||
(name "rust-typenum")
|
||||
|
|
Loading…
Reference in a new issue