mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 16:06:16 -05:00
gnu: Add rust-path-abs-0.5.
* gnu/packages/crates-io.scm (rust-path-abs-0.5): New variable.
This commit is contained in:
parent
42acc9582d
commit
bbb25c9cc0
1 changed files with 28 additions and 0 deletions
|
@ -18836,6 +18836,34 @@ (define-public rust-paste-impl-0.1
|
|||
"Implementation detail of the paste crate.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-path-abs-0.5
|
||||
(package
|
||||
(name "rust-path-abs")
|
||||
(version "0.5.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "path_abs" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "131qi5j201caraqz9rwbzk4mybd9bcrryrhf63lr9gz0xmnqwszb"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-serde" ,rust-serde-1)
|
||||
("rust-serde-derive" ,rust-serde-derive-1)
|
||||
("rust-std-prelude" ,rust-std-prelude-0.2)
|
||||
("rust-stfu8" ,rust-stfu8-0.2))
|
||||
#:cargo-development-inputs
|
||||
(("rust-pretty-assertions" ,rust-pretty-assertions-0.4)
|
||||
("rust-serde-json" ,rust-serde-json-1)
|
||||
("rust-tempdir" ,rust-tempdir-0.3))))
|
||||
(home-page "https://github.com/vitiral/path_abs")
|
||||
(synopsis "Ergonomic paths and files in Rust")
|
||||
(description "This library provides ergonomic path and file operations to
|
||||
Rust with reasonable performance.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-path-clean-0.1
|
||||
(package
|
||||
(name "rust-path-clean")
|
||||
|
|
Loading…
Reference in a new issue