mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-16 19:57:39 -05:00
gnu: Add rust-dbl-0.3.
* gnu/packages/crates-io.scm (rust-dbl-0.3): New varible.
This commit is contained in:
parent
91f05b1bc4
commit
7ce8284fbc
1 changed files with 25 additions and 0 deletions
|
@ -8553,6 +8553,31 @@ (define-public rust-datetime-0.4
|
||||||
and arithmetic.")
|
and arithmetic.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-dbl-0.3
|
||||||
|
(package
|
||||||
|
(name "rust-dbl")
|
||||||
|
(version "0.3.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "dbl" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1pihf6zrzncbs3lsyqkzxxxqmjf8rfpwvs1sg8nmz8cv7df18d97"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-generic-array" ,rust-generic-array-0.14))))
|
||||||
|
(home-page "https://docs.rs/dbl")
|
||||||
|
(synopsis "Double operation in Galois Field")
|
||||||
|
(description
|
||||||
|
"This package provides double and inverse double over Galois Field -
|
||||||
|
GF(2^n). This trait is implemented for 64, 128 and 256 bit block
|
||||||
|
sizes. Big-endian order is used. WARNING: Block must be aligned!")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-decimal-2.0
|
(define-public rust-decimal-2.0
|
||||||
(package
|
(package
|
||||||
(name "rust-decimal")
|
(name "rust-decimal")
|
||||||
|
|
Loading…
Reference in a new issue