diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-12-13 16:29:21 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-12-13 16:29:21 -0500 |
commit | 6dffced09ecda024e0884e352778c221ad066fd6 (patch) | |
tree | 1707e8d8df4d9c47317a39ab6abbfc2ca66a6c29 /gnu/packages/rsync.scm | |
parent | b603554ed044638dd40b6863d5dada59eefe03b8 (diff) | |
parent | e3196755e60ba7f1ed9d432e73f26a85e0c8893c (diff) |
Merge branch 'core-updates-frozen' into 'master'.
At last!
Diffstat (limited to 'gnu/packages/rsync.scm')
-rw-r--r-- | gnu/packages/rsync.scm | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/gnu/packages/rsync.scm b/gnu/packages/rsync.scm index 956c942770..bce184da58 100644 --- a/gnu/packages/rsync.scm +++ b/gnu/packages/rsync.scm @@ -54,11 +54,9 @@ (list "--without-included-zlib" "--without-included-popt"))) (native-inputs - `(("perl" ,perl))) + (list perl)) (inputs - `(("acl" ,acl) - ("popt" ,popt) - ("zlib" ,zlib))) + (list acl popt zlib)) (synopsis "Remote (and local) file copying tool") (description "Rsync is a fast and versatile file copying tool. It can copy locally, @@ -89,7 +87,7 @@ files in the destination.") ;; Avoid these dependencies for now. "--disable-openssl"))) (native-inputs - `(("perl" ,perl))) + (list perl)) (inputs `(("acl" ,acl) ("lz4" ,lz4) @@ -122,10 +120,9 @@ files in the destination.") "0bn29npmbw26akc6y54661irpdh6qcivcs6q48cgp3llklhhxp0q")))) (build-system cmake-build-system) (inputs - `(("popt" ,popt))) + (list popt)) (native-inputs - `(("which" ,which) - ("perl" ,perl))) + (list which perl)) (home-page "http://librsync.sourceforge.net/") (synopsis "Implementation of the rsync remote-delta algorithm") (description |