[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
14/25: gnu: Add rust-zip-0.6.
From: |
guix-commits |
Subject: |
14/25: gnu: Add rust-zip-0.6. |
Date: |
Wed, 22 Feb 2023 14:05:14 -0500 (EST) |
efraim pushed a commit to branch rust-team
in repository guix.
commit 4dae1f70b1dc06aa7af1b532a64a9753f62b80f7
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Feb 22 20:50:51 2023 +0200
gnu: Add rust-zip-0.6.
* gnu/packages/crates-io.scm (rust-zip-0.6): New variable.
(rust-zip-0.5): Inherit from rust-zip-0.6.
---
gnu/packages/crates-io.scm | 49 ++++++++++++++++++++++++++++++++++++++--------
1 file changed, 41 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index e9c22e9e0f..9d490872f3 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -72005,8 +72005,48 @@ implementation that works everywhere, even WASM!")
(description "This crate provides custom derive support for Zeroize.")
(license (list license:asl2.0 license:expat))))
+(define-public rust-zip-0.6
+ (package
+ (name "rust-zip")
+ (version "0.6.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "zip" version))
+ (file-name
+ (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1vydb0v9xl6skr63r6prjs9a67hjzcdc25j3kd9r7fr4r7xx0i84"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs
+ (("rust-aes" ,rust-aes-0.7)
+ ("rust-byteorder" ,rust-byteorder-1)
+ ("rust-bzip2" ,rust-bzip2-0.4)
+ ("rust-constant-time-eq" ,rust-constant-time-eq-0.1)
+ ("rust-crc32fast" ,rust-crc32fast-1)
+ ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.8)
+ ("rust-flate2" ,rust-flate2-1)
+ ("rust-hmac" ,rust-hmac-0.12)
+ ("rust-pbkdf2" ,rust-pbkdf2-0.11)
+ ("rust-sha1" ,rust-sha1-0.10)
+ ("rust-time" ,rust-time-0.3)
+ ("rust-zstd" ,rust-zstd-0.11))
+ #:cargo-development-inputs
+ (("rust-bencher" ,rust-bencher-0.1)
+ ("rust-getrandom" ,rust-getrandom-0.2)
+ ("rust-time" ,rust-time-0.3)
+ ("rust-walkdir" ,rust-walkdir-2))))
+ (home-page "https://github.com/mvdnes/zip-rs.git")
+ (synopsis
+ "Library to support the reading and writing of zip files")
+ (description
+ "Library to support the reading and writing of zip files.")
+ (license license:expat)))
+
(define-public rust-zip-0.5
(package
+ (inherit rust-zip-0.6)
(name "rust-zip")
(version "0.5.13")
(source
@@ -72018,7 +72058,6 @@ implementation that works everywhere, even WASM!")
(sha256
(base32
"0588z88sj37nj1clis1rf4fh794av0hwaiaihfrin9b19n24iawk"))))
- (build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
@@ -72027,13 +72066,7 @@ implementation that works everywhere, even WASM!")
("rust-crc32fast" ,rust-crc32fast-1)
("rust-flate2" ,rust-flate2-1)
("rust-thiserror" ,rust-thiserror-1)
- ("rust-time" ,rust-time-0.1))))
- (home-page "https://github.com/mvdnes/zip-rs.git")
- (synopsis
- "Library to support the reading and writing of zip files")
- (description
- "Library to support the reading and writing of zip files.")
- (license license:expat)))
+ ("rust-time" ,rust-time-0.1))))))
(define-public rust-zoneinfo-compiled-0.5
(package
- 03/25: gnu: rust-bzip2-0.4: Update to 0.4.4., (continued)
- 03/25: gnu: rust-bzip2-0.4: Update to 0.4.4., guix-commits, 2023/02/22
- 07/25: gnu: Add rust-zstd-safe-5., guix-commits, 2023/02/22
- 13/25: gnu: Add rust-password-hash-0.4., guix-commits, 2023/02/22
- 05/25: gnu: rust-getrandom-0.2: Update to 0.2.8., guix-commits, 2023/02/22
- 24/25: gnu: Add rust-tokio-util-0.5., guix-commits, 2023/02/22
- 20/25: gnu: Add rust-pbkdf2-0.11., guix-commits, 2023/02/22
- 19/25: gnu: Add rust-ntest-timeout-0.8., guix-commits, 2023/02/22
- 22/25: gnu: rust-proc-macro-crate-1: Update to 1.3.0., guix-commits, 2023/02/22
- 10/25: gnu: Add rust-hyper-rustls-0.23., guix-commits, 2023/02/22
- 12/25: gnu: rust-async-compression-0.3: Update to 0.3.15., guix-commits, 2023/02/22
- 14/25: gnu: Add rust-zip-0.6.,
guix-commits <=
- 15/25: gnu: rust-trust-dns-resolver-0.22: Don't skip build., guix-commits, 2023/02/22
- 21/25: gnu: rust-http-auth-0.1: Don't skip build., guix-commits, 2023/02/22
- 08/25: gnu: Add rust-zstd-sys-2., guix-commits, 2023/02/22
- 09/25: gnu: tealdeer: Update to 1.6.1., guix-commits, 2023/02/22
- 11/25: gnu: Add rust-zstd-0.11., guix-commits, 2023/02/22
- 16/25: gnu: rust-reqwest-0.11: Fix build., guix-commits, 2023/02/22
- 17/25: gnu: Add rust-ntest-0.8., guix-commits, 2023/02/22
- 18/25: gnu: Add rust-ntest-test-cases-0.8., guix-commits, 2023/02/22
- 25/25: gnu: Add rust-ntest-proc-macro-helper-0.8., guix-commits, 2023/02/22
- 23/25: gnu: Add rust-proptest-derive-0.3., guix-commits, 2023/02/22