me
/
guix
Archived
1
0
Fork 0

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>
master
( 2022-11-29 07:00:29 +00:00 committed by Tobias Geerinckx-Rice
parent 29a22a2c8a
commit df083cfeed
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 24 additions and 0 deletions

View File

@ -21516,6 +21516,30 @@ values to other threads.")
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")