aboutsummaryrefslogtreecommitdiff
path: root/tests/guix-hash.sh
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2016-12-10 21:59:56 +0200
committerEfraim Flashner <efraim@flashner.co.il>2016-12-10 21:59:56 +0200
commit67c539e21f75028f368edefdf3b1bb6a0b302640 (patch)
tree24858abd25b19fb3e86069e441bdee5a77850d08 /tests/guix-hash.sh
parenta304b6c362dcfadfaa2cfe2a67f5e948f247fd51 (diff)
downloadguix-67c539e21f75028f368edefdf3b1bb6a0b302640.tar.gz
guix-67c539e21f75028f368edefdf3b1bb6a0b302640.zip
gnu: Remove unused patch.
* gnu/packages/patches/openjpeg-CVE-2015-6581.patch: Remove file. * gnu/local.mk (dist_patch_DATA): Remove it.
Diffstat (limited to 'tests/guix-hash.sh')
0 files changed, 0 insertions, 0 deletions
#:use-module (gnu packages perl) #:use-module (gnu packages acl) #:use-module (gnu packages base) #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu)) (define-public rsync (package (name "rsync") (version "3.1.0") (source (origin (method url-fetch) (uri (string-append "http://rsync.samba.org/ftp/rsync/src/rsync-" version ".tar.gz")) (sha256 (base32 "0kirw8wglqvwi1v8bwxp373g03xg857h59j5k3mmgff9gzvj7jl1")))) (build-system gnu-build-system) (inputs `(("perl" ,perl) ("acl" ,acl))) (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 gpl3+) (home-page "http://rsync.samba.org/"))) (define-public librsync (package (name "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) (native-inputs `(("which" ,which) ("perl" ,perl))) (arguments '(#:configure-flags '("--enable-shared"))) (home-page "http://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 lgpl2.1+)))