gnu: Add rust-defmac.
* gnu/packages/crates-io.scm (rust-defmac): New variable.
This commit is contained in:
parent
0c15f1432c
commit
d68d00298d
|
@ -240,6 +240,25 @@ depending on a large number of #[cfg] parameters. Structured like an
|
||||||
hexadecimal, bas32, and base64.")
|
hexadecimal, bas32, and base64.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-defmac
|
||||||
|
(package
|
||||||
|
(name "rust-defmac")
|
||||||
|
(version "0.2.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "defmac" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"01ff3jdmcc5waffkwllndnx5hsn414r7x1rq4ib73n7awsyzxkxv"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(home-page "https://github.com/bluss/defmac")
|
||||||
|
(synopsis "Macro to define lambda-like macros inline")
|
||||||
|
(description "A macro to define lambda-like macros inline.")
|
||||||
|
(license (list license:asl2.0
|
||||||
|
license:expat))))
|
||||||
|
|
||||||
(define-public rust-discard
|
(define-public rust-discard
|
||||||
(package
|
(package
|
||||||
(name "rust-discard")
|
(name "rust-discard")
|
||||||
|
|
Loading…
Reference in New Issue