me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-fs-set-times-0.19.

* gnu/packages/crates-io.scm (rust-fs-set-times-0.19): New variable.
Efraim Flashner 2023-05-22 17:56:40 +03:00
parent c89b4eb5f5
commit 39a23b87c2
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 22 additions and 0 deletions

View File

@ -23842,6 +23842,28 @@ more helpful error messages.")
process and much more.") process and much more.")
(license license:expat))) (license license:expat)))
(define-public rust-fs-set-times-0.19
(package
(name "rust-fs-set-times")
(version "0.19.1")
(source (origin
(method url-fetch)
(uri (crate-uri "fs-set-times" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0qc822hifnwvrfd706wnx5xhajqfsc4kn2lmalfda4x02pqx0cvq"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-io-lifetimes" ,rust-io-lifetimes-1)
("rust-rustix" ,rust-rustix-0.37)
("rust-windows-sys" ,rust-windows-sys-0.48))))
(home-page "https://github.com/bytecodealliance/fs-set-times")
(synopsis "Set filesystem timestamps")
(description "Set filesystem timestamps")
(license (list license:asl2.0 license:expat))))
(define-public rust-fs-utils-1 (define-public rust-fs-utils-1
(package (package
(name "rust-fs-utils") (name "rust-fs-utils")