mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-07 19:39:34 +01:00
gnu: rsync: Enable zstd & lz4 compression.
Both are ridiculously more suited to this role than the old zlib compressor. The closure size increase is negligible (1 MiB or 1.3% for zstd, 1.7 MiB for both). * gnu/packages/rsync.scm (rsync-next)[inputs]: Add zstd:lib and lz4. [arguments]: Remove the corresponding "--disable-zstd" and "--disable-lz4" #:configure-flags.
This commit is contained in:
parent
e1401fb727
commit
6b035ad2fa
1 changed files with 4 additions and 4 deletions
|
@ -87,16 +87,16 @@ files in the destination.")
|
||||||
(list "--without-included-zlib"
|
(list "--without-included-zlib"
|
||||||
"--without-included-popt"
|
"--without-included-popt"
|
||||||
;; Avoid these dependencies for now.
|
;; Avoid these dependencies for now.
|
||||||
"--disable-lz4"
|
"--disable-openssl")))
|
||||||
"--disable-openssl"
|
|
||||||
"--disable-zstd")))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("perl" ,perl)))
|
`(("perl" ,perl)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("acl" ,acl)
|
`(("acl" ,acl)
|
||||||
|
("lz4" ,lz4)
|
||||||
("popt" ,popt)
|
("popt" ,popt)
|
||||||
("xxhash" ,xxhash)
|
("xxhash" ,xxhash)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)
|
||||||
|
("zstd:lib" ,zstd "lib")))
|
||||||
(synopsis "Remote (and local) file copying tool")
|
(synopsis "Remote (and local) file copying tool")
|
||||||
(description
|
(description
|
||||||
"Rsync is a fast and versatile file copying tool. It can copy locally,
|
"Rsync is a fast and versatile file copying tool. It can copy locally,
|
||||||
|
|
Loading…
Add table
Reference in a new issue