me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-nom-derive-impl-0.10.

* gnu/packages/crates-io.scm (rust-nom-derive-impl-0.10): New variable.
master
Efraim Flashner 2023-04-17 20:58:54 +03:00
parent 19eaf7ab0c
commit 51ede8c2fa
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 21 additions and 0 deletions

View File

@ -38336,6 +38336,27 @@ combinators library (fork for proposals for v8)")
(description "This package derives custom nom parsers from structs.")
(license (list license:expat license:asl2.0))))
(define-public rust-nom-derive-impl-0.10
(package
(name "rust-nom-derive-impl")
(version "0.10.1")
(source (origin
(method url-fetch)
(uri (crate-uri "nom-derive-impl" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0qnsvvg74wdpzhbkxrndr7x6vb1kvhrd60hfwz1kw3abm29rl2yd"))))
(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/rust-bakery/nom-derive")
(synopsis "Custom derive nom parsers from struct")
(description "This package provides custom derive nom parsers from structs.")
(license (list license:expat license:asl2.0))))
(define-public rust-noop-proc-macro-0.3
(package
(name "rust-noop-proc-macro")