me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-syntex-0.58.

* gnu/packages/crates-io.scm (rust-syntex-0.58): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Valentin Ignatev 2020-01-16 18:02:50 +03:00 committed by Efraim Flashner
parent e8166e7954
commit 1244ed1a5d
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 26 additions and 0 deletions

View File

@ -12883,6 +12883,32 @@ cryptographic implementations.")
(properties '((hidden? . #t)))
(license license:expat)))
(define-public rust-syntex-0.58
(package
(name "rust-syntex")
(version "0.58.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "syntex" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"03lgd36cxhc6gzaab0wqvckbhml00s6s73lk34ymf6cklymf7xd8"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-syntex-errors" ,rust-syntex-errors-0.58)
("rust-syntex-syntax" ,rust-syntex-syntax-0.58))))
(home-page "https://github.com/erickt/rust-syntex")
(synopsis "Compile time syntax extension expansion")
(description
"This package provides a library that enables compile time
syntax extension expansion.")
(license (list license:expat license:asl2.0))))
(define-public rust-syntex-pos-0.58
(package
(name "rust-syntex-pos")