mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 23:32:24 -05:00
gnu: Add rust-demo-hack-impl-0.0.
* gnu/packages/crates-io.scm (rust-demo-hack-impl-0.0): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
9ee2b2abc7
commit
72676780bf
1 changed files with 25 additions and 0 deletions
|
@ -899,6 +899,31 @@ (define-public rust-demo-hack-0.0
|
|||
(description "Demo of proc-macro-hack.")
|
||||
(license (list 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
|
||||
`(#:skip-build? #t
|
||||
#: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 (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-dirs-1.0
|
||||
(package
|
||||
(name "rust-dirs")
|
||||
|
|
Loading…
Reference in a new issue