mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-13 18:40:57 +02:00
gnu: rust-libflate: Move to (gnu packages crates-compression).
* gnu/packages/crates-io.scm (rust-libflate-2, rust-libflate-1, rust-libflate-0.1, rust-libflate-lz77-2, rust-libflate-lz77-1): Move from here ... * gnu/packages/crates-compression.scm: ... to here. Change-Id: Iad567b4f547e99492051b9bc2b71a27e464895c1
This commit is contained in:
parent
3aba38a6dc
commit
d44ae14b7f
2 changed files with 113 additions and 112 deletions
|
@ -12,6 +12,7 @@
|
||||||
;;; Copyright © 2024 Steve George <steve@futurile.net>
|
;;; Copyright © 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>
|
||||||
|
;;; Copyright © 2024 Herman Rimm <herman@rimm.ee>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -693,3 +694,115 @@ for raw deflate, zlib, and gzip data.")
|
||||||
(("rust-criterion" ,rust-criterion-0.3)
|
(("rust-criterion" ,rust-criterion-0.3)
|
||||||
("rust-flate2" ,rust-flate2-1))))))
|
("rust-flate2" ,rust-flate2-1))))))
|
||||||
|
|
||||||
|
(define-public rust-libflate-2
|
||||||
|
(package
|
||||||
|
(name "rust-libflate")
|
||||||
|
(version "2.1.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "libflate" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "07mj9z89vbhq837q58m4v2nblgsmrn6vrp8w1j8g0kpa2kfdzna5"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs (("rust-adler32" ,rust-adler32-1)
|
||||||
|
("rust-core2" ,rust-core2-0.4)
|
||||||
|
("rust-crc32fast" ,rust-crc32fast-1)
|
||||||
|
("rust-dary-heap" ,rust-dary-heap-0.3)
|
||||||
|
("rust-libflate-lz77" ,rust-libflate-lz77-2))
|
||||||
|
#:cargo-development-inputs (("rust-clap" ,rust-clap-4))))
|
||||||
|
(home-page "https://github.com/sile/libflate")
|
||||||
|
(synopsis "DEFLATE algorithm and related formats (ZLIB, GZIP)")
|
||||||
|
(description "This package provides a Rust implementation of DEFLATE
|
||||||
|
algorithm and related formats (ZLIB, GZIP).")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-libflate-1
|
||||||
|
(package
|
||||||
|
(inherit rust-libflate-2)
|
||||||
|
(name "rust-libflate")
|
||||||
|
(version "1.4.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "libflate" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "063xw2z477h3vh7j32y0f54a6nbndd7yf7rr5wpsvfw5nrqsxx2z"))))
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-adler32" ,rust-adler32-1)
|
||||||
|
("rust-core2" ,rust-core2-0.4)
|
||||||
|
("rust-crc32fast" ,rust-crc32fast-1)
|
||||||
|
("rust-libflate-lz77" ,rust-libflate-lz77-1))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-clap" ,rust-clap-2))))))
|
||||||
|
|
||||||
|
(define-public rust-libflate-0.1
|
||||||
|
(package
|
||||||
|
(inherit rust-libflate-1)
|
||||||
|
(name "rust-libflate")
|
||||||
|
(version "0.1.27")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "libflate" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1p8z839c5lpl0g01mf8iglys9lgcjxw6xjw56crhwp8z7gs5s4yr"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-adler32" ,rust-adler32-1)
|
||||||
|
("rust-crc32fast" ,rust-crc32fast-1)
|
||||||
|
("rust-rle-decode-fast" ,rust-rle-decode-fast-1)
|
||||||
|
("rust-take-mut" ,rust-take-mut-0.2))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-clap" ,rust-clap-2))))))
|
||||||
|
|
||||||
|
(define-public rust-libflate-lz77-2
|
||||||
|
(package
|
||||||
|
(name "rust-libflate-lz77")
|
||||||
|
(version "2.1.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "libflate_lz77" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0gc6h98jwigscasz8vw1vv65b3rismqcbndb8hf6yf4z6qxxgq76"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-core2" ,rust-core2-0.4)
|
||||||
|
("rust-hashbrown" ,rust-hashbrown-0.14)
|
||||||
|
("rust-rle-decode-fast" ,rust-rle-decode-fast-1))
|
||||||
|
#:cargo-development-inputs (("rust-libflate" ,rust-libflate-2))))
|
||||||
|
(home-page "https://github.com/sile/libflate")
|
||||||
|
(synopsis "LZ77 encoder for libflate crate")
|
||||||
|
(description "This package provides a LZ77 encoder for libflate crate.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-libflate-lz77-1
|
||||||
|
(package
|
||||||
|
(inherit rust-libflate-lz77-2)
|
||||||
|
(name "rust-libflate-lz77")
|
||||||
|
(version "1.2.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "libflate_lz77" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1gxc75fb2sk0xgrh3qxvxcx1l93yhmyxn9241r251wl5zj5klbd5"))))
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-core2" ,rust-core2-0.4)
|
||||||
|
("rust-hashbrown" ,rust-hashbrown-0.13)
|
||||||
|
("rust-rle-decode-fast" ,rust-rle-decode-fast-1))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-libflate" ,rust-libflate-1))))))
|
||||||
|
|
||||||
|
|
|
@ -39865,118 +39865,6 @@ macros on libc without stdlib.")
|
||||||
(description "This package provides FFI bindings to libdbus.")
|
(description "This package provides FFI bindings to libdbus.")
|
||||||
(license (list license:asl2.0 license:expat))))
|
(license (list license:asl2.0 license:expat))))
|
||||||
|
|
||||||
(define-public rust-libflate-2
|
|
||||||
(package
|
|
||||||
(name "rust-libflate")
|
|
||||||
(version "2.1.0")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "libflate" version))
|
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32 "07mj9z89vbhq837q58m4v2nblgsmrn6vrp8w1j8g0kpa2kfdzna5"))))
|
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:cargo-inputs (("rust-adler32" ,rust-adler32-1)
|
|
||||||
("rust-core2" ,rust-core2-0.4)
|
|
||||||
("rust-crc32fast" ,rust-crc32fast-1)
|
|
||||||
("rust-dary-heap" ,rust-dary-heap-0.3)
|
|
||||||
("rust-libflate-lz77" ,rust-libflate-lz77-2))
|
|
||||||
#:cargo-development-inputs (("rust-clap" ,rust-clap-4))))
|
|
||||||
(home-page "https://github.com/sile/libflate")
|
|
||||||
(synopsis "DEFLATE algorithm and related formats (ZLIB, GZIP)")
|
|
||||||
(description "This package provides a Rust implementation of DEFLATE
|
|
||||||
algorithm and related formats (ZLIB, GZIP).")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public rust-libflate-1
|
|
||||||
(package
|
|
||||||
(inherit rust-libflate-2)
|
|
||||||
(name "rust-libflate")
|
|
||||||
(version "1.4.0")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "libflate" version))
|
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32 "063xw2z477h3vh7j32y0f54a6nbndd7yf7rr5wpsvfw5nrqsxx2z"))))
|
|
||||||
(arguments
|
|
||||||
`(#:cargo-inputs
|
|
||||||
(("rust-adler32" ,rust-adler32-1)
|
|
||||||
("rust-core2" ,rust-core2-0.4)
|
|
||||||
("rust-crc32fast" ,rust-crc32fast-1)
|
|
||||||
("rust-libflate-lz77" ,rust-libflate-lz77-1))
|
|
||||||
#:cargo-development-inputs
|
|
||||||
(("rust-clap" ,rust-clap-2))))))
|
|
||||||
|
|
||||||
(define-public rust-libflate-0.1
|
|
||||||
(package
|
|
||||||
(inherit rust-libflate-1)
|
|
||||||
(name "rust-libflate")
|
|
||||||
(version "0.1.27")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "libflate" version))
|
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1p8z839c5lpl0g01mf8iglys9lgcjxw6xjw56crhwp8z7gs5s4yr"))))
|
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:cargo-inputs
|
|
||||||
(("rust-adler32" ,rust-adler32-1)
|
|
||||||
("rust-crc32fast" ,rust-crc32fast-1)
|
|
||||||
("rust-rle-decode-fast" ,rust-rle-decode-fast-1)
|
|
||||||
("rust-take-mut" ,rust-take-mut-0.2))
|
|
||||||
#:cargo-development-inputs
|
|
||||||
(("rust-clap" ,rust-clap-2))))))
|
|
||||||
|
|
||||||
(define-public rust-libflate-lz77-2
|
|
||||||
(package
|
|
||||||
(name "rust-libflate-lz77")
|
|
||||||
(version "2.1.0")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "libflate_lz77" version))
|
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32 "0gc6h98jwigscasz8vw1vv65b3rismqcbndb8hf6yf4z6qxxgq76"))))
|
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:cargo-inputs
|
|
||||||
(("rust-core2" ,rust-core2-0.4)
|
|
||||||
("rust-hashbrown" ,rust-hashbrown-0.14)
|
|
||||||
("rust-rle-decode-fast" ,rust-rle-decode-fast-1))
|
|
||||||
#:cargo-development-inputs (("rust-libflate" ,rust-libflate-2))))
|
|
||||||
(home-page "https://github.com/sile/libflate")
|
|
||||||
(synopsis "LZ77 encoder for libflate crate")
|
|
||||||
(description "This package provides a LZ77 encoder for libflate crate.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public rust-libflate-lz77-1
|
|
||||||
(package
|
|
||||||
(inherit rust-libflate-lz77-2)
|
|
||||||
(name "rust-libflate-lz77")
|
|
||||||
(version "1.2.0")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "libflate_lz77" version))
|
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32 "1gxc75fb2sk0xgrh3qxvxcx1l93yhmyxn9241r251wl5zj5klbd5"))))
|
|
||||||
(arguments
|
|
||||||
`(#:cargo-inputs
|
|
||||||
(("rust-core2" ,rust-core2-0.4)
|
|
||||||
("rust-hashbrown" ,rust-hashbrown-0.13)
|
|
||||||
("rust-rle-decode-fast" ,rust-rle-decode-fast-1))
|
|
||||||
#:cargo-development-inputs
|
|
||||||
(("rust-libflate" ,rust-libflate-1))))))
|
|
||||||
|
|
||||||
(define-public rust-libfuzzer-sys-0.4
|
(define-public rust-libfuzzer-sys-0.4
|
||||||
(package
|
(package
|
||||||
(name "rust-libfuzzer-sys")
|
(name "rust-libfuzzer-sys")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue