gnu: Add rust-actix-derive-0.5.

* gnu/packages/crates-io.scm (rust-actix-derive-0.5): New variable.
This commit is contained in:
Nicolas Goaziou 2020-12-24 10:21:40 +01:00
parent 7d00f7d79d
commit 7370231e24
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -191,6 +191,33 @@ (define-public rust-actix-connect-1
"This package provides a TCP connector service for Actix ecosystem.")
(license (list license:expat license:asl2.0))))
(define-public rust-actix-derive-0.5
(package
(name "rust-actix-derive")
(version "0.5.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "actix-derive" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0k1kg4gkp2jhi5fgdfd0cq2qfbyy3gfgwqjrvzq1hzrjmynwwnmr"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #true ;bootsrapping issues with rust-actix
#:cargo-inputs
(("rust-proc-macro2" ,rust-proc-macro2-1)
("rust-quote" ,rust-quote-1)
("rust-syn" ,rust-syn-1))
;; #:cargo-development-inputs
;; (("rust-actix" ,rust-actix-0.8))
))
(home-page "https://github.com/actix/actix-derive/")
(synopsis "Proc macros for Actix Rust actor framework")
(description
"This package provides proc macros for the Rust actor framework Actix.")
(license (list license:expat license:asl2.0))))
(define-public rust-actix-macros-0.1
(package
(name "rust-actix-macros")