me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-actix-derive-0.4.

* gnu/packages/crates-io.scm (rust-actix-derive-0.4): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Aleksandr Vityazev 2022-01-17 15:15:31 +00:00 committed by Nicolas Goaziou
parent 9d730b2a9a
commit 7f4f593873
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 19 additions and 0 deletions

View File

@ -394,6 +394,25 @@ protocols.")
"This package provides proc macros for the Rust actor framework Actix.") "This package provides proc macros for the Rust actor framework Actix.")
(license (list license:expat license:asl2.0)))) (license (list license:expat license:asl2.0))))
(define-public rust-actix-derive-0.4
(package
(inherit rust-actix-derive-0.5)
(name "rust-actix-derive")
(version "0.4.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "actix-derive" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0v0mvq883aq5z6d0893bh32bfddvfajh5bm7nkl0l8idpzbzdx8b"))))
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-proc-macro2" ,rust-proc-macro2-0.4)
("rust-quote" ,rust-quote-0.6)
("rust-syn" ,rust-syn-0.15))))))
(define-public rust-actix-http-2 (define-public rust-actix-http-2
(package (package
(name "rust-actix-http") (name "rust-actix-http")