me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-strict-num-0.1.

* gnu/packages/crates-io.scm (rust-strict-num-0.1): New variable.
master
Efraim Flashner 2023-04-24 16:58:15 +03:00
parent cad62dc45a
commit 5200763c8e
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 19 additions and 0 deletions

View File

@ -59860,6 +59860,25 @@ this library enables this optimization for divisors that are only known at
runtime.") runtime.")
(license (list license:expat license:asl2.0)))) (license (list license:expat license:asl2.0))))
(define-public rust-strict-num-0.1
(package
(name "rust-strict-num")
(version "0.1.0")
(source (origin
(method url-fetch)
(uri (crate-uri "strict-num" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1l9b7d0qrdg3nvqim1xvkcis37jmdf565qyxxx2x5vlad4h5zxlx"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-float-cmp" ,rust-float-cmp-0.9))))
(home-page "https://github.com/RazrFalcon/strict-num")
(synopsis "Collection of bounded numeric types")
(description "This package provides a collection of bounded numeric types.")
(license license:expat)))
(define-public rust-string-0.2 (define-public rust-string-0.2
(package (package
(name "rust-string") (name "rust-string")