mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
gnu: Add rust-muldiv-1.
* gnu/packages/crates-io.scm (rust-muldiv-1): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
88660d628b
commit
2f0e11127f
1 changed files with 21 additions and 0 deletions
|
@ -41869,6 +41869,27 @@ (define-public rust-mp4-0.9
|
|||
(description "mp4 is a Rust library to read and write ISO-MP4 files.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-muldiv-1
|
||||
(package
|
||||
(name "rust-muldiv")
|
||||
(version "1.0.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "muldiv" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1c6ljsp41n8ijsx7zicwfm135drgyhcms12668ivvsbm1r98frwm"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
(list #:cargo-inputs `(("rust-quickcheck" ,rust-quickcheck-1))))
|
||||
(home-page "https://github.com/sdroege/rust-muldiv")
|
||||
(synopsis "Trait for numeric types to combine multiplication and division")
|
||||
(description
|
||||
"This package provides a trait for numeric types to perform combined
|
||||
multiplication and division with overflow protection.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-multimap-0.8
|
||||
(package
|
||||
(name "rust-multimap")
|
||||
|
|
Loading…
Reference in a new issue