mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
gnu: Add rust-delharc-0.6.
* gnu/packages/crates-compression.scm (rust-delharc-0.6): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Change-Id: I1245e6d53ff843d04ccafec296d7a07e86c2cbae
This commit is contained in:
parent
a8b22544e5
commit
dc7ccb4439
1 changed files with 26 additions and 0 deletions
|
@ -488,6 +488,32 @@ (define-public rust-deflate64-0.1
|
|||
(description "Deflate64 implementation based on .NET's implementation.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-delharc-0.6
|
||||
(package
|
||||
(name "rust-delharc")
|
||||
(version "0.6.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "delharc" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "18g5haj6bj92azif4jifhdy9vrv6blg3wyvpmxslh2gm2wkbm4qw"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; Test files are missing.
|
||||
#:cargo-inputs (("rust-bitflags" ,rust-bitflags-2)
|
||||
("rust-chrono" ,rust-chrono-0.4)
|
||||
("rust-memchr" ,rust-memchr-2))
|
||||
#:cargo-development-inputs (("rust-crc-any" ,rust-crc-any-2)
|
||||
("rust-rand" ,rust-rand-0.8))))
|
||||
(home-page "https://github.com/royaltm/rust-delharc")
|
||||
(synopsis "Parse and extract files from LHA/LZH archives")
|
||||
(description
|
||||
"This package provides a Rust library for parsing and extracting files
|
||||
from LHA/LZH archives, which are often suffixed @code{.lha} or @code{.lzh}.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-fdeflate-0.3
|
||||
(package
|
||||
(name "rust-fdeflate")
|
||||
|
|
Loading…
Reference in a new issue