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.scm (rust-fs-err-2): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
3579b12222
commit
822209c646
1 changed files with 21 additions and 0 deletions
|
@ -22454,6 +22454,27 @@ (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.6.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "fs-err" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1q5z8d6q8310fgzg78bpmhyfigz7fkgp1bbmhcxq85k1ml23bgay"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t))
|
||||
(home-page "https://github.com/andrewhickman/fs-err")
|
||||
(synopsis "Better error messages for @code{std::fs} crate")
|
||||
(description
|
||||
"This package provides a drop-in replacement for @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