diff options
author | Arun Isaac <arunisaac@systemreboot.net> | 2020-09-17 14:35:48 +0530 |
---|---|---|
committer | Arun Isaac <arunisaac@systemreboot.net> | 2020-10-12 11:41:53 +0530 |
commit | c8ec1b8789d4bb90fb7dbbe98101d71e44df9588 (patch) | |
tree | 3e61c667187cc5d3ec911c6419b3d0a5a00cfc7b /gnu | |
parent | 206ff7371d221935ca8d69ff1546b8957973fdd0 (diff) | |
download | guix-c8ec1b8789d4bb90fb7dbbe98101d71e44df9588.tar.gz guix-c8ec1b8789d4bb90fb7dbbe98101d71e44df9588.zip |
gnu: Add rust-time-macros-impl-0.1.
* gnu/packages/crates-io.scm (rust-time-macros-impl-0.1): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 6e9eb55732..8fb2c43e7a 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -26180,6 +26180,32 @@ in Rust.") (license (list license:asl2.0 license:expat)))) +(define-public rust-time-macros-impl-0.1 + (package + (name "rust-time-macros-impl") + (version "0.1.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "time-macros-impl" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1ymqhvnvry3giiw45xvarlgagl8hnd6cz4alkz32fq5dvwgbxhz5")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5) + ("rust-proc-macro2" ,rust-proc-macro2-1) + ("rust-quote" ,rust-quote-1) + ("rust-standback" ,rust-standback-0.2) + ("rust-syn" ,rust-syn-1)))) + (home-page "https://github.com/time-rs/time") + (synopsis "Procedural macros for the time crate") + (description "This package provides procedural macros for the time +crate.") + (license (list license:expat license:asl2.0)))) + (define-public rust-tinytemplate-1 (package (name "rust-tinytemplate") |