mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-14 02:50:45 +02:00
gnu: rust-autocompress-0.2: Move to (gnu packages crates-compression).
* gnu/packages/crates-io.scm (rust-autocompress-0.2): Move from here ... * gnu/packages/crates-compression.scm: ... to here. Change-Id: I9bf602ab358c0f14eaf97fee9a2032aead4cd97f
This commit is contained in:
parent
c6963eef23
commit
afb05d9c6f
2 changed files with 41 additions and 41 deletions
|
@ -8,7 +8,7 @@
|
||||||
;;; Copyright © 2022 Aleksandr Vityazev <avityazev@posteo.org>
|
;;; Copyright © 2022 Aleksandr Vityazev <avityazev@posteo.org>
|
||||||
;;; Copyright © 2022 Petr Hodina <phodina@protonmail.com>
|
;;; Copyright © 2022 Petr Hodina <phodina@protonmail.com>
|
||||||
;;; Copyright © 2022 Marius Bakke <marius@gnu.org>
|
;;; Copyright © 2022 Marius Bakke <marius@gnu.org>
|
||||||
;;; Copyright © 2022 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2022, 2023 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2023, 2024 Steve George <steve@futurile.net>
|
;;; Copyright © 2023, 2024 Steve George <steve@futurile.net>
|
||||||
;;; Copyright © 2024 Wilko Meyer <w@wmeyer.eu>
|
;;; Copyright © 2024 Wilko Meyer <w@wmeyer.eu>
|
||||||
;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com>
|
;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com>
|
||||||
|
@ -50,6 +50,46 @@
|
||||||
;;; Please: Try to add new module packages in alphabetic order.
|
;;; Please: Try to add new module packages in alphabetic order.
|
||||||
;;;
|
;;;
|
||||||
|
|
||||||
|
(define-public rust-autocompress-0.2
|
||||||
|
(package
|
||||||
|
(name "rust-autocompress")
|
||||||
|
(version "0.2.2")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "autocompress" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"16pjdfr5b2ixs2xk3h6mvxprxr84rpaips624d6vbap5vsdkvzx4"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:tests? #false ;The crate does not include test files
|
||||||
|
#:skip-build? #t ; could not find `block` in `zstd`
|
||||||
|
#:cargo-inputs
|
||||||
|
`(("rust-brotli" ,rust-brotli-3)
|
||||||
|
("rust-bzip2" ,rust-bzip2-0.4)
|
||||||
|
("rust-crossbeam-channel" ,rust-crossbeam-channel-0.5)
|
||||||
|
("rust-flate2" ,rust-flate2-1)
|
||||||
|
("rust-log" ,rust-log-0.4)
|
||||||
|
("rust-lz4" ,rust-lz4-1)
|
||||||
|
("rust-snap" ,rust-snap-1)
|
||||||
|
("rust-xz2" ,rust-xz2-0.1)
|
||||||
|
("rust-zstd" ,rust-zstd-0.9))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
`(("rust-clap" ,rust-clap-2)
|
||||||
|
("rust-pretty-env-logger" ,rust-pretty-env-logger-0.4)
|
||||||
|
("rust-rand" ,rust-rand-0.8)
|
||||||
|
("rust-temp-testdir" ,rust-temp-testdir-0.2))))
|
||||||
|
(inputs (list xz))
|
||||||
|
(native-inputs (list pkg-config))
|
||||||
|
(home-page "https://github.com/informationsea/autocompress-rs")
|
||||||
|
(synopsis "Select decoder from magic bytes or encoder from file extension")
|
||||||
|
(description
|
||||||
|
"This crate lets you automatically select a suitable decoder from magic
|
||||||
|
bytes or encoder from file extension.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public rust-brotli-7
|
(define-public rust-brotli-7
|
||||||
(package
|
(package
|
||||||
(name "rust-brotli")
|
(name "rust-brotli")
|
||||||
|
|
|
@ -6543,46 +6543,6 @@ automatically generated enum.")
|
||||||
"0y4vw4l4izdxq1v0rrhvmlbqvalrqrmk60v1z0dqlgnlbzkl7phd"))))
|
"0y4vw4l4izdxq1v0rrhvmlbqvalrqrmk60v1z0dqlgnlbzkl7phd"))))
|
||||||
(arguments `(#:cargo-inputs (("rust-autocfg" ,rust-autocfg-1))))))
|
(arguments `(#:cargo-inputs (("rust-autocfg" ,rust-autocfg-1))))))
|
||||||
|
|
||||||
(define-public rust-autocompress-0.2
|
|
||||||
(package
|
|
||||||
(name "rust-autocompress")
|
|
||||||
(version "0.2.2")
|
|
||||||
(source (origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "autocompress" version))
|
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"16pjdfr5b2ixs2xk3h6mvxprxr84rpaips624d6vbap5vsdkvzx4"))))
|
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
|
||||||
(list
|
|
||||||
#:tests? #false ;The crate does not include test files
|
|
||||||
#:skip-build? #t ; could not find `block` in `zstd`
|
|
||||||
#:cargo-inputs
|
|
||||||
`(("rust-brotli" ,rust-brotli-3)
|
|
||||||
("rust-bzip2" ,rust-bzip2-0.4)
|
|
||||||
("rust-crossbeam-channel" ,rust-crossbeam-channel-0.5)
|
|
||||||
("rust-flate2" ,rust-flate2-1)
|
|
||||||
("rust-log" ,rust-log-0.4)
|
|
||||||
("rust-lz4" ,rust-lz4-1)
|
|
||||||
("rust-snap" ,rust-snap-1)
|
|
||||||
("rust-xz2" ,rust-xz2-0.1)
|
|
||||||
("rust-zstd" ,rust-zstd-0.9))
|
|
||||||
#:cargo-development-inputs
|
|
||||||
`(("rust-clap" ,rust-clap-2)
|
|
||||||
("rust-pretty-env-logger" ,rust-pretty-env-logger-0.4)
|
|
||||||
("rust-rand" ,rust-rand-0.8)
|
|
||||||
("rust-temp-testdir" ,rust-temp-testdir-0.2))))
|
|
||||||
(inputs (list xz))
|
|
||||||
(native-inputs (list pkg-config))
|
|
||||||
(home-page "https://github.com/informationsea/autocompress-rs")
|
|
||||||
(synopsis "Select decoder from magic bytes or encoder from file extension")
|
|
||||||
(description
|
|
||||||
"This crate lets you automatically select a suitable decoder from magic
|
|
||||||
bytes or encoder from file extension.")
|
|
||||||
(license license:asl2.0)))
|
|
||||||
|
|
||||||
(define-public rust-automod-1
|
(define-public rust-automod-1
|
||||||
(package
|
(package
|
||||||
(name "rust-automod")
|
(name "rust-automod")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue