mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-07 03:20:04 +01:00
gnu: Add rust-zstd-safe-7.
* gnu/packages/crates-io.scm (rust-zstd-safe-7): New variable. (rust-zstd-safe-5): Inherit from rust-zstd-safe-7. Change-Id: I6b9650557e9dcb839ccfd445494dcb4af09954ac
This commit is contained in:
parent
c47b5f4adb
commit
2a611cec33
1 changed files with 22 additions and 8 deletions
|
@ -92463,23 +92463,20 @@ implementation that works everywhere, even WASM!")
|
||||||
("rust-partial-io" ,rust-partial-io-0.5)
|
("rust-partial-io" ,rust-partial-io-0.5)
|
||||||
("rust-walkdir" ,rust-walkdir-2))))))
|
("rust-walkdir" ,rust-walkdir-2))))))
|
||||||
|
|
||||||
(define-public rust-zstd-safe-5
|
(define-public rust-zstd-safe-7
|
||||||
(package
|
(package
|
||||||
(name "rust-zstd-safe")
|
(name "rust-zstd-safe")
|
||||||
(version "5.0.2+zstd.1.5.2")
|
(version "7.0.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (crate-uri "zstd-safe" version))
|
(uri (crate-uri "zstd-safe" version))
|
||||||
(file-name
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1nzl4q3xl68pq58g9xlym299bvjdii8cl7ix595ym7jgw22maahx"))))
|
(base32 "0gpav2lcibrpmyslmjkcn3w0w64qif3jjljd2h8lr4p249s7qx23"))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs (("rust-zstd-sys" ,rust-zstd-sys-2))))
|
||||||
(("rust-libc" ,rust-libc-0.2)
|
|
||||||
("rust-zstd-sys" ,rust-zstd-sys-2))))
|
|
||||||
(home-page "https://github.com/gyscos/zstd-rs")
|
(home-page "https://github.com/gyscos/zstd-rs")
|
||||||
(synopsis "Safe low-level bindings to the zstd compression library")
|
(synopsis "Safe low-level bindings to the zstd compression library")
|
||||||
(description
|
(description
|
||||||
|
@ -92487,6 +92484,23 @@ implementation that works everywhere, even WASM!")
|
||||||
library.")
|
library.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public rust-zstd-safe-5
|
||||||
|
(package
|
||||||
|
(inherit rust-zstd-safe-7)
|
||||||
|
(name "rust-zstd-safe")
|
||||||
|
(version "5.0.2+zstd.1.5.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "zstd-safe" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1nzl4q3xl68pq58g9xlym299bvjdii8cl7ix595ym7jgw22maahx"))))
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-libc" ,rust-libc-0.2)
|
||||||
|
("rust-zstd-sys" ,rust-zstd-sys-2))))))
|
||||||
|
|
||||||
(define-public rust-zstd-safe-4
|
(define-public rust-zstd-safe-4
|
||||||
(package
|
(package
|
||||||
(inherit rust-zstd-safe-5)
|
(inherit rust-zstd-safe-5)
|
||||||
|
|
Loading…
Add table
Reference in a new issue