me
/
guix
Archived
1
0
Fork 0

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.
master
Efraim Flashner 2023-02-22 20:18:34 +02:00
parent d7b92c3c69
commit 6a5f2037cd
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 25 additions and 7 deletions

View File

@ -72245,8 +72245,32 @@ implementation that works everywhere, even WASM!")
"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 @@ implementation that works everywhere, even WASM!")
(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