mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 07:12:30 -05:00
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>
This commit is contained in:
parent
075929a839
commit
6f4595533a
1 changed files with 28 additions and 0 deletions
|
@ -5118,6 +5118,34 @@ (define-public rust-rawpointer-0.1
|
|||
(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")
|
||||
|
|
Loading…
Reference in a new issue