me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-fs-utils-1.

* gnu/packages/crates-io.scm (rust-fs-utils-1): New variable.
master
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
1 changed files with 23 additions and 0 deletions

View File

@ -23263,6 +23263,29 @@ helpful error messages.")
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")