mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 22:26:40 -05:00
gnu: Add rust-quote-1.0.
* gnu/packages/rust-cbindgen.scm (rust-quote-1.0): New hidden variable.
This commit is contained in:
parent
88ce4ef919
commit
e8a28c8964
1 changed files with 19 additions and 0 deletions
|
@ -300,3 +300,22 @@ (define rust-proc-macro2-1.0
|
|||
in terms of the upstream unstable API.")
|
||||
(properties '((hidden? . #t)))
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define rust-quote-1.0
|
||||
(package
|
||||
(name "rust-quote")
|
||||
(version "1.0.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "quote" version))
|
||||
(file-name (string-append name "-" version ".crate"))
|
||||
(sha256
|
||||
(base32
|
||||
"1zkc46ryacf2jdkc6krsy2z615xbk1x8kp1830rcxz3irj5qqfh5"))))
|
||||
(build-system cargo-build-system)
|
||||
(home-page "https://github.com/dtolnay/quote")
|
||||
(synopsis "Quasi-quoting macro quote!(...)")
|
||||
(description "Quasi-quoting macro quote!(...)")
|
||||
(properties '((hidden? . #t)))
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
|
Loading…
Reference in a new issue