mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: Add rust-fs-err-2.
* gnu/packages/crates-io.scm (rust-fs-err-2): New variable. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
This commit is contained in:
parent
29a22a2c8a
commit
df083cfeed
1 changed files with 24 additions and 0 deletions
|
@ -21516,6 +21516,30 @@ (define-public rust-fs2-0.4
|
|||
duplication.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-fs-err-2
|
||||
(package
|
||||
(name "rust-fs-err")
|
||||
(version "2.9.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "fs-err" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0ha5ysh5jz2hxlhmydc82pjcycps6ips4jyni41jy8cr48jzli88"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
(list #:cargo-inputs
|
||||
`(("rust-tokio" ,rust-tokio-1))
|
||||
#:cargo-development-inputs
|
||||
`(("rust-serde-json" ,rust-serde-json-1))))
|
||||
(home-page "https://github.com/andrewhickman/fs-err")
|
||||
(synopsis "@code{std::fs} with more helpful errors")
|
||||
(description
|
||||
"This package provides an alternative to @code{std::fs} with
|
||||
more helpful error messages.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-fs-extra-1
|
||||
(package
|
||||
(name "rust-fs-extra")
|
||||
|
|
Loading…
Reference in a new issue