From aa12f5fc0c8c9bbfab6ff68d6c0132d4ebc33ee8 Mon Sep 17 00:00:00 2001 From: John Soo Date: Sat, 14 Dec 2019 10:29:29 -0800 Subject: [PATCH 036/206] gnu: Add rust-demo-hack-impl-0.0. * gnu/packages/crates-io.scm (rust-demo-hack-impl-0.0): New variable. --- gnu/packages/crates-io.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 92fb649511..df1b5412b5 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -911,6 +911,31 @@ hexadecimal, base32, and base64.") (description "Demo of proc-macro-hack") (license `(,license:expat ,license:asl2.0)))) +(define-public rust-demo-hack-impl-0.0 + (package + (name "rust-demo-hack-impl") + (version "0.0.5") + (source + (origin + (method url-fetch) + (uri (crate-uri "demo-hack-impl" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1f1fdl60xjas9wlmcl9v6f56vgm3mzwr019kcifav5464rx3w3ld")))) + (build-system cargo-build-system) + ;; (arguments + ;; `(#:cargo-inputs + ;; (("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5) + ;; ("rust-quote" ,rust-quote-1.0) + ;; ("rust-syn" ,rust-syn-0.15)))) + (home-page + "https://github.com/dtolnay/proc-macro-hack") + (synopsis "Demo of proc-macro-hack") + (description "Demo of proc-macro-hack") + (license `(,license:expat ,license:asl2.0)))) + (define-public rust-dirs-1.0 (package (name "rust-dirs") -- 2.24.0