me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-rend.

* gnu/packages/crates-io.scm (rust-rend-0.3): New variable.
master
Marius Bakke 2022-12-02 21:32:53 +01:00 committed by Maxim Cournoyer
parent a664ac9bc4
commit e30618c95b
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 20 additions and 0 deletions

View File

@ -46682,6 +46682,26 @@ uses finite automata and guarantees linear time matching on all inputs.")
#:cargo-development-inputs
(("rust-doc-comment" ,rust-doc-comment-0.3))))))
(define-public rust-rend-0.3
(package
(name "rust-rend")
(version "0.3.6")
(source (origin
(method url-fetch)
(uri (crate-uri "rend" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"15fz3rw8c74586kxl6dcdn4s864ph884wfpg9shgnbrnnss69bvr"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-bytecheck" ,rust-bytecheck-0.6))))
(home-page "https://github.com/rkyv/rend")
(synopsis "Endian-aware primitives for Rust")
(description
"This package provides endian-aware primitives for Rust.")
(license license:expat)))
(define-public rust-reopen-0.3
(package
(name "rust-reopen")