gnu: rust-gzip-header: Move to (gnu packages crates-compression).

* gnu/packages/crates-io.scm (rust-gzip-header-1, rust-gzip-header-0.3):
Move from here ...
* gnu/packages/crates-compression.scm: ... to here.

Change-Id: I3d76b1e9397ce6522ffb6dd2c387aafddf997932
This commit is contained in:
Efraim Flashner 2024-12-26 21:51:06 +02:00
parent 2aca456b3d
commit 9f6b7014dd
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351
2 changed files with 43 additions and 42 deletions

View file

@ -468,3 +468,46 @@ (define-public rust-flate2-1
Reader/Writer streams. Contains bindings for zlib, deflate, and gzip-based
streams.")
(license (list license:expat license:asl2.0))))
(define-public rust-gzip-header-1
(package
(name "rust-gzip-header")
(version "1.0.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "gzip-header" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"18lm2y96mahkmcd76pzyam2sl3v6lsl9mn8ajri9l0p6j9xm5k4m"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-crc32fast" ,rust-crc32fast-1))))
(home-page "https://github.com/oyvindln/gzip-header")
(synopsis "Decoding and encoding the header part of gzip files")
(description
"This package provides a crate for decoding and encoding the header part
of gzip files based on the gzip header implementation in the @code{flate2} crate.")
(license (list license:expat license:asl2.0))))
(define-public rust-gzip-header-0.3
(package
(inherit rust-gzip-header-1)
(name "rust-gzip-header")
(version "0.3.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "gzip-header" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0fg6vm8sgsm69szwqyz7abfbyziv6pv0jkcailimlamvsfrzwc81"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-crc32fast" ,rust-crc32fast-1))))))

View file

@ -32359,48 +32359,6 @@ (define-public rust-gumdrop-derive-0.8
(description "This package provides custom derive support for gumdrop.")
(license (list license:expat license:asl2.0))))
(define-public rust-gzip-header-1
(package
(name "rust-gzip-header")
(version "1.0.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "gzip-header" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"18lm2y96mahkmcd76pzyam2sl3v6lsl9mn8ajri9l0p6j9xm5k4m"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-crc32fast" ,rust-crc32fast-1))))
(home-page "https://github.com/oyvindln/gzip-header")
(synopsis "Decoding and encoding the header part of gzip files")
(description
"This package provides a crate for decoding and encoding the header part
of gzip files based on the gzip header implementation in the @code{flate2} crate.")
(license (list license:expat license:asl2.0))))
(define-public rust-gzip-header-0.3
(package
(inherit rust-gzip-header-1)
(name "rust-gzip-header")
(version "0.3.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "gzip-header" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0fg6vm8sgsm69szwqyz7abfbyziv6pv0jkcailimlamvsfrzwc81"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-crc32fast" ,rust-crc32fast-1))))))
(define-public rust-gzp-0.11
(package
(name "rust-gzp")