me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-typetag-impl-0.2.

* gnu/packages/crates-io.scm (rust-typetag-impl-0.2): New variable.

Change-Id: I86ef7c9373912193c5a3204c8de172f4a562bb0f
master
Efraim Flashner 2024-03-31 14:34:42 +03:00
parent 816f243db0
commit d5a8b9a5c2
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 22 additions and 0 deletions

View File

@ -83380,6 +83380,28 @@ implementation is incomplete.")
(license (list license:asl2.0
license:expat))))
(define-public rust-typetag-impl-0.2
(package
(name "rust-typetag-impl")
(version "0.2.16")
(source
(origin
(method url-fetch)
(uri (crate-uri "typetag-impl" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1cabnvm526bcgh1sh34js5ils0gz4xwlgvwhm992acdr8xzqhwxc"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-proc-macro2" ,rust-proc-macro2-1)
("rust-quote" ,rust-quote-1)
("rust-syn" ,rust-syn-2))))
(home-page "https://github.com/dtolnay/typetag")
(synopsis "Implementation detail of the typetag crate")
(description
"This package provides the implementation detail of the typetag crate.")
(license (list license:expat license:asl2.0))))
(define-public rust-typewit-1
(package
(name "rust-typewit")