me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-zstd-0.13.

* gnu/packages/crates-io.scm (rust-zstd-0.13): New variable.
(rust-zstd-0.11): Inherit from rust-zstd-0.13.

Change-Id: I7564a407e74dae9c1a1bab3d872b7e7767c23f91
master
Efraim Flashner 2023-12-21 09:22:31 +02:00
parent 2a611cec33
commit 969238fd71
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 27 additions and 7 deletions

View File

@ -92406,8 +92406,34 @@ implementation that works everywhere, even WASM!")
"This package provides a library for parsing compiled zoneinfo files.")
(license license:expat)))
(define-public rust-zstd-0.13
(package
(name "rust-zstd")
(version "0.13.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "zstd" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0401q54s9r35x2i7m1kwppgkj79g0pb6xz3xpby7qlkdb44k7yxz"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f ; Not all files included.
#:cargo-inputs (("rust-zstd-safe" ,rust-zstd-safe-7))
#:cargo-development-inputs (("rust-clap" ,rust-clap-4)
("rust-humansize" ,rust-humansize-2)
("rust-partial-io" ,rust-partial-io-0.5)
("rust-walkdir" ,rust-walkdir-2))))
(home-page "https://github.com/gyscos/zstd-rs")
(synopsis "Binding to the zstd compression library")
(description
"This package provides a binding to the Zstd compression library.")
(license license:expat)))
(define-public rust-zstd-0.11
(package
(inherit rust-zstd-0.13)
(name "rust-zstd")
(version "0.11.2+zstd.1.5.2")
(source
@ -92418,7 +92444,6 @@ implementation that works everywhere, even WASM!")
(string-append name "-" version ".tar.gz"))
(sha256
(base32 "1r7xlmgnifhxbfyid8vkcnd5ip16gx9hf89d1l0lzrpc4q1rdk10"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f ; Not all files included.
#:cargo-inputs
@ -92427,12 +92452,7 @@ implementation that works everywhere, even WASM!")
(("rust-clap" ,rust-clap-3)
("rust-humansize" ,rust-humansize-1)
("rust-partial-io" ,rust-partial-io-0.5)
("rust-walkdir" ,rust-walkdir-2))))
(home-page "https://github.com/gyscos/zstd-rs")
(synopsis "Binding to the zstd compression library")
(description
"This package provides a binding to the Zstd compression library.")
(license license:expat)))
("rust-walkdir" ,rust-walkdir-2))))))
(define-public rust-zstd-0.9
(package