diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-07-16 06:43:55 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-07-16 06:45:06 +0200 |
commit | f6d59ecf920dadcaa115579e29ad38d16780ea89 (patch) | |
tree | 7508b30e37be5168abb82511485dcc1e690d8dc8 /gnu/packages | |
parent | 0d200e9f3f512d5d8dabd9a7dda6a9fab74359c9 (diff) | |
download | guix-f6d59ecf920dadcaa115579e29ad38d16780ea89.tar.gz guix-f6d59ecf920dadcaa115579e29ad38d16780ea89.zip |
gnu: par2cmdline: Improve synopsis & description.
* gnu/packages/backup.scm (par2cmdline)[synopsis, description]: Fix a typo,
end up re-writing most of it.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/backup.scm | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm index 0810a47f04..92cb0489df 100644 --- a/gnu/packages/backup.scm +++ b/gnu/packages/backup.scm @@ -136,10 +136,15 @@ spying and/or modification by the server.") (modify-phases %standard-phases (add-after 'unpack 'autoreconf (lambda _ (zero? (system* "autoreconf" "-vfi"))))))) - (synopsis "File verification and repair tool") - (description "Par2cmdline is a tool for generating RAID-like PAR2 recovery -files using Reed-Solomon coding. PAR2 files can be stored along side backups -or distributed files for recovering from bitrot.") + (synopsis "File verification and repair tools") + (description "Par2cmdline uses Reed-Solomon error-correcting codes to +generate and verify PAR2 recovery files. These files can be distributed +alongside the source files or stored together with back-ups to protect against +transmission errors or @dfn{bit rot}, the degradation of storage media over +time. +Unlike a simple checksum, PAR2 doesn't merely detect errors: as long as the +damage isn't to great (and smaller than the size of the recovery file), it can +even repair them.") (home-page "https://github.com/Parchive/par2cmdline") (license license:gpl3+))) |