gnu: Add rust-fs-utils-1.

* gnu/packages/crates-io.scm (rust-fs-utils-1): New variable.
This commit is contained in:
Ricardo Wurmus 2022-09-21 23:52:00 +02:00
parent 8acb81ba71
commit 9576469cc6
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -23263,6 +23263,29 @@ (define-public rust-fs-extra-1
process and much more.")
(license license:expat)))
(define-public rust-fs-utils-1
(package
(name "rust-fs-utils")
(version "1.1.4")
(source (origin
(method url-fetch)
(uri (crate-uri "fs-utils" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"14r5wl14mz227v0lpy89lvjzfnxgdxigvrrmm6c4r52w03fakivg"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-quick-error" ,rust-quick-error-1))
#:cargo-development-inputs
(("rust-tempfile" ,rust-tempfile-3))))
(home-page "https://github.com/Byron/fs-utils-rs")
(synopsis "Utilities to help working with the filesytem")
(description "This package provides a bunch of utilities to help working
with the filesytem.")
(license (list license:expat license:asl2.0))))
(define-public rust-fs2-0.2
(package
(name "rust-fs2")