me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-crc-catalog-1.

* gnu/packages/crates-io.scm (rust-crc-catalog-1): New variable.
master
Efraim Flashner 2023-02-22 12:17:30 +02:00
parent 8cf8dace14
commit 16b841734c
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 18 additions and 0 deletions

View File

@ -13972,6 +13972,24 @@ final xor value. It has many built-in CRC functions.")
Rust.")
(license license:bsd-3)))
(define-public rust-crc-catalog-1
(package
(name "rust-crc-catalog")
(version "1.1.1")
(source (origin
(method url-fetch)
(uri (crate-uri "crc-catalog" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "00qlxgzg15fnyx6nwviibz94rjw803l2avi2k3shjfx0dnsyvbnc"))))
(build-system cargo-build-system)
(home-page "https://github.com/akhilles/crc-catalog.git")
(synopsis "Catalog of CRC algorithms expressed as simple Rust structs")
(description
"This package contains a catalog of CRC algorithms (generated from
http://reveng.sourceforge.net/crc-catalogue) expressed as simple Rust structs.")
(license (list license:expat license:asl2.0))))
(define-public rust-criterion-0.4
(package
(name "rust-criterion")