mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-08 03:59:40 +01:00
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:
parent
2aca456b3d
commit
9f6b7014dd
2 changed files with 43 additions and 42 deletions
|
@ -468,3 +468,46 @@ written in rust.")
|
||||||
Reader/Writer streams. Contains bindings for zlib, deflate, and gzip-based
|
Reader/Writer streams. Contains bindings for zlib, deflate, and gzip-based
|
||||||
streams.")
|
streams.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(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))))))
|
||||||
|
|
||||||
|
|
|
@ -32359,48 +32359,6 @@ support.")
|
||||||
(description "This package provides custom derive support for gumdrop.")
|
(description "This package provides custom derive support for gumdrop.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(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
|
(define-public rust-gzp-0.11
|
||||||
(package
|
(package
|
||||||
(name "rust-gzp")
|
(name "rust-gzp")
|
||||||
|
|
Loading…
Add table
Reference in a new issue