me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-cast-0.2.

* gnu/packages/crates-io.scm (rust-cast-0.2): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
John Soo 2019-12-13 23:02:49 -08:00 committed by Efraim Flashner
parent 141397564e
commit 472685a7e9
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 25 additions and 0 deletions

View File

@ -374,6 +374,31 @@ used in argon2rs' bench suite.")
(properties '((hidden? . #t)))
(license license:wtfpl2)))
(define-public rust-cast-0.2
(package
(name "rust-cast")
(version "0.2.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "cast" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"09yl2700crxa4n860b080msij25klvs1kfzazhp2aihchvr16q4j"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-development-inputs
(("rust-quickcheck" ,rust-quickcheck-0.8))))
(home-page "https://github.com/japaric/cast.rs")
(synopsis
"Ergonomic, checked cast functions for primitive types")
(description
"Ergonomic, checked cast functions for primitive types.")
(license (list license:expat license:asl2.0))))
(define-public rust-cblas-sys-0.1
(package
(name "rust-cblas-sys")