gnu: Add rust-zstd-0.11.
* gnu/packages/crates-io.scm (rust-zstd-0.11): New variable. (rust-zstd-0.9): Inherit from rust-zstd-0.11.
This commit is contained in:
parent
d7b92c3c69
commit
6a5f2037cd
1 changed files with 25 additions and 7 deletions
|
@ -72245,8 +72245,32 @@ implementation that works everywhere, even WASM!")
|
||||||
"This package provides a library for parsing compiled zoneinfo files.")
|
"This package provides a library for parsing compiled zoneinfo files.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-zstd-0.11
|
||||||
|
(package
|
||||||
|
(name "rust-zstd")
|
||||||
|
(version "0.11.2+zstd.1.5.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "zstd" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1r7xlmgnifhxbfyid8vkcnd5ip16gx9hf89d1l0lzrpc4q1rdk10"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-zstd-safe" ,rust-zstd-safe-5))))
|
||||||
|
(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.9
|
(define-public rust-zstd-0.9
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-zstd-0.11)
|
||||||
(name "rust-zstd")
|
(name "rust-zstd")
|
||||||
(version "0.9.0+zstd.1.5.0")
|
(version "0.9.0+zstd.1.5.0")
|
||||||
(source
|
(source
|
||||||
|
@ -72258,16 +72282,10 @@ implementation that works everywhere, even WASM!")
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1k9caa048d8x9asksjaf62xkpv0m1wsmw94h29k3csybq9frlx07"))))
|
"1k9caa048d8x9asksjaf62xkpv0m1wsmw94h29k3csybq9frlx07"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:skip-build? #t
|
`(#:skip-build? #t
|
||||||
#:cargo-inputs
|
#:cargo-inputs
|
||||||
(("rust-zstd-safe" ,rust-zstd-safe-4))))
|
(("rust-zstd-safe" ,rust-zstd-safe-4))))))
|
||||||
(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.8
|
(define-public rust-zstd-0.8
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue