mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 12:39:36 -05:00
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 @@ (define-public rust-zoneinfo-compiled-0.5
|
|||
"This package provides a library for parsing compiled zoneinfo files.")
|
||||
(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
|
||||
(package
|
||||
(inherit rust-zstd-0.11)
|
||||
(name "rust-zstd")
|
||||
(version "0.9.0+zstd.1.5.0")
|
||||
(source
|
||||
|
@ -72258,16 +72282,10 @@ (define-public rust-zstd-0.9
|
|||
(sha256
|
||||
(base32
|
||||
"1k9caa048d8x9asksjaf62xkpv0m1wsmw94h29k3csybq9frlx07"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("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)))
|
||||
(("rust-zstd-safe" ,rust-zstd-safe-4))))))
|
||||
|
||||
(define-public rust-zstd-0.8
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue