mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-15 03:15:09 -05:00
gnu: Add rust-query-interface-0.3.
* gnu/packages/crates-io.scm (rust-query-interface-0.3): New variable.
This commit is contained in:
parent
8db412a641
commit
f671edef0c
1 changed files with 23 additions and 0 deletions
|
@ -28648,6 +28648,29 @@ (define-public rust-quasi-macros-0.32
|
|||
(description "This package provides a quasi-quoting macro system.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-query-interface-0.3
|
||||
(package
|
||||
(name "rust-query-interface")
|
||||
(version "0.3.5")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "query_interface" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "14rn7i6jr8zf3h103jhmivw39429gmkzk4wgns3bpvl4c82g1h3q"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-lazy-static" ,rust-lazy-static-1))))
|
||||
(home-page "https://github.com/Diggsey/query_interface")
|
||||
(synopsis "Dynamically query a type-erased object for any trait implementation")
|
||||
(description
|
||||
"This package dynamically queries a type-erased object for any trait
|
||||
implementation.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-quick-error-1
|
||||
(package
|
||||
(name "rust-quick-error")
|
||||
|
|
Loading…
Reference in a new issue