mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-22 18:49:14 -05:00
gnu: Add rust-crc-any-2.
* gnu/packages/crates-io.scm (rust-crc-any-2): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
55ac2e48cb
commit
9116989d78
1 changed files with 26 additions and 0 deletions
|
@ -10591,6 +10591,32 @@ (define-public rust-crc-1
|
|||
64) with support for various standards.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-crc-any-2
|
||||
(package
|
||||
(name "rust-crc-any")
|
||||
(version "2.3.12")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "crc-any" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0fq85y5akcadahnj5nqbs47qhgp5cpfn2z19zc3gp4wpxr3989kr"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-debug-helper" ,rust-debug-helper-0.3)
|
||||
("rust-heapless" ,rust-heapless-0.5))
|
||||
#:cargo-development-inputs
|
||||
(("rust-bencher" ,rust-bencher-0.1))))
|
||||
(home-page "https://magiclen.org/crc-any")
|
||||
(synopsis "Compute CRC values")
|
||||
(description "This package provides a crate to compute CRC values by
|
||||
providing the length of bits, expression, reflection, an initial value and a
|
||||
final xor value. It has many built-in CRC functions.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-crc32fast-1
|
||||
(package
|
||||
(name "rust-crc32fast")
|
||||
|
|
Loading…
Reference in a new issue