diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-03-22 13:15:45 +0100 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-05-07 19:29:27 +0300 |
commit | 2cb81ed4f53cfcf2403d4b31985a1ee544c79a9c (patch) | |
tree | 0de1bdf88e63ae9b17ef626b0e82ded14a6dc100 | |
parent | 77d7ecabb4f928b0ecd4fee8bc4c986be99ef68a (diff) | |
download | guix-2cb81ed4f53cfcf2403d4b31985a1ee544c79a9c.tar.gz |
gnu: Add rust-markup-proc-macro-0.13.
* gnu/packages/crates-io.scm (rust-markup-proc-macro-0.13): New variable.
-rw-r--r-- | gnu/packages/crates-io.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index ab5ee98ec1..d5bd1cc837 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -33789,6 +33789,30 @@ algorithms. It supports CBC block cipher mode, PKCS5 padding and 64, 128, (license (list license:asl2.0 license:expat)))) +(define-public rust-markup-proc-macro-0.13 + (package + (name "rust-markup-proc-macro") + (version "0.13.1") + (source (origin + (method url-fetch) + (uri (crate-uri "markup-proc-macro" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0l41di814m9vzw3bz3j49j09j6cb3r73rc4a3a6dvjvx4c77z4hs")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-proc-macro2" ,rust-proc-macro2-1) + ("rust-quote" ,rust-quote-1) + ("rust-syn" ,rust-syn-1)))) + (home-page "https://github.com/utkarshkukreti/markup.rs") + (synopsis "Macros for template engine for Rust") + (description + "This package provides macros for \"markup\", the fast, type-safe +template engine for Rust.") + (license (list license:expat license:asl2.0)))) + (define-public rust-markup5ever-0.10 (package (name "rust-markup5ever") |