diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2020-04-20 22:23:08 +0200 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2020-05-05 13:20:21 +0200 |
commit | 8b465bdc9e2649c6743ab1697e9edc5f26d6b7f0 (patch) | |
tree | 078ddaebba094cc68e3b2bbf1f4674b3572ea681 | |
parent | 304c702f6084a864634c3283190e4c56d159ad83 (diff) | |
download | patches-8b465bdc9e2649c6743ab1697e9edc5f26d6b7f0.tar patches-8b465bdc9e2649c6743ab1697e9edc5f26d6b7f0.tar.gz |
gnu: Add rust-fs2-0.4.
* gnu/packages/crates-io.scm (rust-fs2-0.4): New variable.
-rw-r--r-- | gnu/packages/crates-io.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index cd028329fa..75c3141ef7 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -7023,6 +7023,31 @@ values to other threads.") "This package provides low level binding for FreeType font library.") (license license:expat))) +(define-public rust-fs2-0.4 + (package + (name "rust-fs2") + (version "0.4.3") + (source + (origin + (method url-fetch) + (uri (crate-uri "fs2" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "04v2hwk7035c088f19mfl5b1lz84gnvv2hv6m935n0hmirszqr4m")))) + (build-system cargo-build-system) + (arguments + `(#:tests? #f ;; "#![feature] may not be used on stable release channel" + #:cargo-inputs + (("rust-libc" ,rust-libc-0.2) + ("rust-winapi" ,rust-winapi-0.3)) + #:cargo-development-inputs + (("rust-tempdir" ,rust-tempdir-0.3)))) + (home-page "https://github.com/danburkert/fs2-rs") + (synopsis "Cross-platform file locks and file duplication") + (description "This package provides cross-platform file locks and file +duplication.") + (license (list license:expat license:asl2.0)))) + (define-public rust-fs-extra-1.1 (package (name "rust-fs-extra") |