mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-05 18:29:28 +01:00
gnu: Add rust-libdeflate-sys-1.
* gnu/packages/crates-io.scm (rust-libdeflate-sys-1): New variable. (rust-libdeflate-sys-0.11): Inherit from rust-libdeflate-sys-1. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Change-Id: I9ebb9b17042a8ddd3bf7e6e9cb6d9a71bd1f4874
This commit is contained in:
parent
1ab6c57394
commit
81539f61dc
1 changed files with 17 additions and 3 deletions
|
@ -32362,16 +32362,16 @@ macros on libc without stdlib.")
|
||||||
(license (list license:asl2.0 license:expat))))
|
(license (list license:asl2.0 license:expat))))
|
||||||
|
|
||||||
;; TODO: Unbundle libdeflate
|
;; TODO: Unbundle libdeflate
|
||||||
(define-public rust-libdeflate-sys-0.11
|
(define-public rust-libdeflate-sys-1
|
||||||
(package
|
(package
|
||||||
(name "rust-libdeflate-sys")
|
(name "rust-libdeflate-sys")
|
||||||
(version "0.11.0")
|
(version "1.19.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (crate-uri "libdeflate-sys" version))
|
(uri (crate-uri "libdeflate-sys" version))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0xs2wdly73ar7r9qyrbwnkwjjz4wd92kv5h78cdxfrsbp2v88ryb"))))
|
(base32 "1hhwgzlpbw2nafylnjrhbyh7s6q9fb2cglf3xxcia30hhmzim4k7"))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs (("rust-cc" ,rust-cc-1))))
|
`(#:cargo-inputs (("rust-cc" ,rust-cc-1))))
|
||||||
|
@ -32383,6 +32383,20 @@ exposed as non-streaming buffer operations. It contains bindings for raw
|
||||||
deflate, zlib, and gzip data.")
|
deflate, zlib, and gzip data.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public rust-libdeflate-sys-0.11
|
||||||
|
(package
|
||||||
|
(inherit rust-libdeflate-sys-1)
|
||||||
|
(name "rust-libdeflate-sys")
|
||||||
|
(version "0.11.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "libdeflate-sys" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0xs2wdly73ar7r9qyrbwnkwjjz4wd92kv5h78cdxfrsbp2v88ryb"))))
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs (("rust-cc" ,rust-cc-1))))))
|
||||||
|
|
||||||
(define-public rust-libdeflate-sys-0.7
|
(define-public rust-libdeflate-sys-0.7
|
||||||
(package
|
(package
|
||||||
(inherit rust-libdeflate-sys-0.11)
|
(inherit rust-libdeflate-sys-0.11)
|
||||||
|
|
Loading…
Add table
Reference in a new issue