aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/mg.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/mg.scm')
0 files changed, 0 insertions, 0 deletions
h zlib `(,zstd "lib"))) (synopsis "Remote (and local) file copying tool") (description "Rsync is a fast and versatile file copying tool. It can copy locally, to/from another host over any remote shell, or to/from a remote rsync daemon. Its delta-transfer algorithm reduces the amount of data sent over the network by sending only the differences between the source files and the existing files in the destination.") (license license:gpl3+) (home-page "https://rsync.samba.org/"))) (define-public librsync (package (name "librsync") (version "2.3.2") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/librsync/librsync") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0bn29npmbw26akc6y54661irpdh6qcivcs6q48cgp3llklhhxp0q")))) (build-system cmake-build-system) (inputs (list popt)) (native-inputs (list which perl)) (home-page "https://librsync.sourceforge.net/") (synopsis "Implementation of the rsync remote-delta algorithm") (description "Librsync is a free software library that implements the rsync remote-delta algorithm. This algorithm allows efficient remote updates of a file, without requiring the old and new versions to both be present at the sending end. The library uses a \"streaming\" design similar to that of zlib with the aim of allowing it to be embedded into many different applications.") (license license:lgpl2.1+))) (define-public librsync-0.9 (package (inherit librsync) (version "0.9.7") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/librsync/librsync/" version "/librsync-" version ".tar.gz")) (sha256 (base32 "1mj1pj99mgf1a59q9f2mxjli2fzxpnf55233pc1klxk2arhf8cv6")))) (build-system gnu-build-system) (arguments '(#:configure-flags '("--enable-shared"))) (inputs '())))