me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-rawslice-0.1.

* gnu/packages/crates-io.scm (rust-rawslice-0.1): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
John Soo 2019-12-14 19:23:10 -08:00 committed by Efraim Flashner
parent 075929a839
commit 6f4595533a
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 28 additions and 0 deletions

View File

@ -5118,6 +5118,34 @@ and @code{ptrdistance}.")
(license (list license:asl2.0
license:expat))))
(define-public rust-rawslice-0.1
(package
(name "rust-rawslice")
(version "0.1.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "rawslice" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"09bympww1rpsd422da3w444q5w1znjbjh7mjninhq9gaaygkpci2"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-rawpointer" ,rust-rawpointer-0.1))
#:cargo-development-inputs
(("rust-quickcheck" ,rust-quickcheck-0.8))))
(home-page "https://github.com/bluss/rawslice/")
(synopsis "Reimplementation of the slice iterators, with extra features")
(description
"Reimplementation of the slice iterators, with extra features.
For example creation from raw pointers and start, end pointer
accessors.")
(license (list license:asl2.0 license:expat))))
(define-public rust-rayon-1.1
(package
(name "rust-rayon")