mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: rsync: Update to 3.2.6.
* gnu/packages/rsync.scm (rsync): Update to 3.2.6. [arguments]<#:configure-flags> Remove '--disable-openssl'. [inputs]: Add openssl. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
ec883398f6
commit
a4288aa6b8
1 changed files with 5 additions and 5 deletions
|
@ -29,6 +29,7 @@ (define-module (gnu packages rsync)
|
|||
#:use-module (gnu packages digest)
|
||||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages popt)
|
||||
#:use-module (gnu packages tls)
|
||||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix download)
|
||||
|
@ -39,27 +40,26 @@ (define-module (gnu packages rsync)
|
|||
(define-public rsync
|
||||
(package
|
||||
(name "rsync")
|
||||
(version "3.2.5")
|
||||
(version "3.2.6")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://rsync.samba.org/ftp/rsync/src/rsync-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1flsqq01dmbz0m2vwn4sj46zb9yxlrfc6xy3gf393xyd6lbd5i1a"))))
|
||||
"1lslaj1s7mpgf4v5lxhhiyy4ffmxaxy9cbplx8gx8dvqnax6aczv"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
;; The bundled copies are preferred by default.
|
||||
(list "--without-included-zlib"
|
||||
"--without-included-popt"
|
||||
;; Avoid these dependencies for now.
|
||||
"--disable-openssl")))
|
||||
"--without-included-popt")))
|
||||
(native-inputs
|
||||
(list perl))
|
||||
(inputs
|
||||
(list acl
|
||||
lz4
|
||||
openssl
|
||||
popt
|
||||
xxhash
|
||||
zlib
|
||||
|
|
Loading…
Reference in a new issue