1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 18:40:57 +02:00

gnu: rust-inflate-0.4: Move to (gnu packages crates-compression).

* gnu/packages/crates-io.scm (rust-inflate-0.4): Move from here ...
* gnu/packages/crates-compression.scm: ... to here.

Change-Id: If7d0d70175ce1ef5141e817b613dd69aedcf42d4
This commit is contained in:
Efraim Flashner 2024-12-26 22:25:32 +02:00
parent 1f0eaaebcd
commit fb8a87a3e9
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351
2 changed files with 21 additions and 21 deletions

View file

@ -624,6 +624,27 @@ of gzip files based on the gzip header implementation in the @code{flate2} crate
(description "This package provides a library for parallel compression.") (description "This package provides a library for parallel compression.")
(license (list license:unlicense license:expat)))) (license (list license:unlicense license:expat))))
(define-public rust-inflate-0.4
(package
(name "rust-inflate")
(version "0.4.5")
(source
(origin
(method url-fetch)
(uri (crate-uri "inflate" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1zxjdn8iwa0ssxrnjmywm3r1v284wryvzrf8vkc7nyf5ijbjknqw"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-adler32" ,rust-adler32-1))))
(home-page "https://github.com/PistonDevelopers/inflate.git")
(synopsis "DEFLATE decoding")
(description "This package provides DEFLATE decoding.")
(license license:expat)))
(define-public rust-libdeflate-sys-1 (define-public rust-libdeflate-sys-1
(package (package
(name "rust-libdeflate-sys") (name "rust-libdeflate-sys")

View file

@ -35804,27 +35804,6 @@ signature.")
profiling tool suite.") profiling tool suite.")
(license license:cddl1.0))) (license license:cddl1.0)))
(define-public rust-inflate-0.4
(package
(name "rust-inflate")
(version "0.4.5")
(source
(origin
(method url-fetch)
(uri (crate-uri "inflate" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1zxjdn8iwa0ssxrnjmywm3r1v284wryvzrf8vkc7nyf5ijbjknqw"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-adler32" ,rust-adler32-1))))
(home-page "https://github.com/PistonDevelopers/inflate.git")
(synopsis "DEFLATE decoding")
(description "This package provides DEFLATE decoding.")
(license license:expat)))
(define-public rust-inflections-1 (define-public rust-inflections-1
(package (package
(name "rust-inflections") (name "rust-inflections")