gnu: Add rust-region-3.
* gnu/packages/crates-io.scm (rust-region-3): New variable. (rust-region-2): Inherit from above. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
parent
753ba327c1
commit
29bd8ce17e
|
@ -44207,8 +44207,34 @@ uses finite automata and guarantees linear time matching on all inputs.")
|
|||
(("rust-quickcheck" ,rust-quickcheck-0.2)
|
||||
("rust-rand" ,rust-rand-0.3))))))
|
||||
|
||||
(define-public rust-region-3
|
||||
(package
|
||||
(name "rust-region")
|
||||
(version "3.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "region" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0bji1p0c9abzh78ps5hs0ygg9pxkg7gjspll43lxr14q6v18kqbn"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-bitflags" ,rust-bitflags-1)
|
||||
("rust-libc" ,rust-libc-0.2)
|
||||
("rust-mach" ,rust-mach-0.3)
|
||||
("rust-winapi" ,rust-winapi-0.3))))
|
||||
(home-page "https://github.com/darfink/region-rs")
|
||||
(synopsis "Library for manipulating memory regions")
|
||||
(description
|
||||
"This package provides a library for manipulating memory regions.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-region-2
|
||||
(package
|
||||
(inherit rust-region-3)
|
||||
(name "rust-region")
|
||||
(version "2.2.0")
|
||||
(source
|
||||
|
@ -44219,7 +44245,6 @@ uses finite automata and guarantees linear time matching on all inputs.")
|
|||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1q4szar3ms76552iygmhsvzhvvwkgz4l94qpx600vmyw5bm58zl7"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-bitflags" ,rust-bitflags-1)
|
||||
|
@ -44227,12 +44252,7 @@ uses finite automata and guarantees linear time matching on all inputs.")
|
|||
("rust-mach" ,rust-mach-0.3)
|
||||
("rust-winapi" ,rust-winapi-0.3))
|
||||
#:cargo-development-inputs
|
||||
(("rust-memmap" ,rust-memmap-0.7))))
|
||||
(home-page "https://github.com/darfink/region-rs")
|
||||
(synopsis "Library for manipulating memory regions")
|
||||
(description
|
||||
"This package provides a library for manipulating memory regions.")
|
||||
(license license:expat)))
|
||||
(("rust-memmap" ,rust-memmap-0.7))))))
|
||||
|
||||
(define-public rust-relative-path-1
|
||||
(package
|
||||
|
|
Reference in New Issue