gnu: Add rust-glob.
* gnu/packages/crates-io.scm (rust-glob): New variable.
This commit is contained in:
parent
01519b3d9f
commit
b79eab74a1
1 changed files with 32 additions and 0 deletions
|
@ -931,6 +931,38 @@ (define-public rust-gcc
|
|||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
(define-public rust-glob
|
||||
(package
|
||||
(name "rust-glob")
|
||||
(version "0.3.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "glob" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0x25wfr7vg3mzxc9x05dcphvd3nwlcmbnxrvwcvrrdwplcrrk4cv"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-development-inputs
|
||||
(("rust-tempdir" ,rust-tempdir))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-tests
|
||||
;; This test assumes /root exists but is unreadable by the user.
|
||||
(lambda _
|
||||
(substitute* "src/lib.rs"
|
||||
(("cfg\\(all\\(unix,.*") "cfg(windows)]\n"))
|
||||
#t)))))
|
||||
(home-page "https://github.com/rust-lang-nursery/glob")
|
||||
(synopsis "Match file paths against Unix shell style patterns")
|
||||
(description
|
||||
"This package provides support for matching file paths against Unix
|
||||
shell style patterns.")
|
||||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
(define-public rust-heapsize
|
||||
(package
|
||||
(name "rust-heapsize")
|
||||
|
|
Loading…
Reference in a new issue