mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: rsync: Use system zlib and popt libraries.
Reduce our likelihood of contracting security bugs at the expense of compression ratio (in some cases) and compatibility with rsync≤3.1.1. rsync@3.1.2 was released in 2014. Time to upgrade your CentOS box. * gnu/packages/rsync.scm (rsync)[inputs]: Add popt and zlib. [arguments]: Use them.
This commit is contained in:
parent
f9caa6c7c1
commit
acf2b20069
1 changed files with 8 additions and 2 deletions
|
@ -34,7 +34,6 @@ (define-module (gnu packages rsync)
|
|||
#:use-module (guix build-system cmake)
|
||||
#:use-module (guix build-system gnu))
|
||||
|
||||
|
||||
(define-public rsync
|
||||
(package
|
||||
(name "rsync")
|
||||
|
@ -47,10 +46,17 @@ (define-public rsync
|
|||
(base32
|
||||
"1h0011dj6jgqpgribir4anljjv7bbrdcs8g91pbsmzf5zr75bk2m"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
;; The bundled copies are preferred by default.
|
||||
(list "--without-included-zlib"
|
||||
"--without-included-popt")))
|
||||
(native-inputs
|
||||
`(("perl" ,perl)))
|
||||
(inputs
|
||||
`(("acl" ,acl)))
|
||||
`(("acl" ,acl)
|
||||
("popt" ,popt)
|
||||
("zlib" ,zlib)))
|
||||
(synopsis "Remote (and local) file copying tool")
|
||||
(description
|
||||
"Rsync is a fast and versatile file copying tool. It can copy locally,
|
||||
|
|
Loading…
Reference in a new issue