mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: Add dvdisaster.
* gnu/packages/cdrom.scm (dvdisaster): New variable.
This commit is contained in:
parent
b7884ca3ca
commit
c1cab15a54
1 changed files with 42 additions and 2 deletions
|
@ -20,15 +20,18 @@
|
||||||
(define-module (gnu packages cdrom)
|
(define-module (gnu packages cdrom)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module ((guix licenses) #:select (lgpl2.1+ gpl2 gpl3+))
|
#:use-module ((guix licenses) #:select (lgpl2.1+ gpl2 gpl2+ gpl3+))
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module (gnu packages acl)
|
#:use-module (gnu packages acl)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
|
#:use-module ((gnu packages gettext) #:renamer (symbol-prefix-proc 'gnu:))
|
||||||
|
#:use-module (gnu packages gtk)
|
||||||
#:use-module (gnu packages readline)
|
#:use-module (gnu packages readline)
|
||||||
#:use-module (gnu packages ncurses)
|
#:use-module (gnu packages ncurses)
|
||||||
#:use-module (gnu packages help2man)
|
#:use-module (gnu packages help2man)
|
||||||
#:use-module (gnu packages pkg-config))
|
#:use-module (gnu packages pkg-config)
|
||||||
|
#:use-module (gnu packages which))
|
||||||
|
|
||||||
(define-public libcddb
|
(define-public libcddb
|
||||||
(package
|
(package
|
||||||
|
@ -142,3 +145,40 @@ (define-public cdparanoia
|
||||||
extra-robust data verification, synchronization, error handling and scratch
|
extra-robust data verification, synchronization, error handling and scratch
|
||||||
reconstruction capability.")
|
reconstruction capability.")
|
||||||
(license gpl2))) ; libraries under lgpl2.1
|
(license gpl2))) ; libraries under lgpl2.1
|
||||||
|
|
||||||
|
(define-public dvdisaster
|
||||||
|
(package
|
||||||
|
(name "dvdisaster")
|
||||||
|
(version "0.72.4")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "http://dvdisaster.net/downloads/dvdisaster-"
|
||||||
|
version ".tar.bz2"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0pm039a78h7m9vvjmmjfkl05ii6qdmfhvbypxjbc7j5w82y66is4"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(inputs
|
||||||
|
`(("gettext" ,gnu:gettext)
|
||||||
|
("gtk+" ,gtk+)
|
||||||
|
("pkg-config" ,pkg-config)
|
||||||
|
("which" ,which)))
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f)) ; no check target
|
||||||
|
(home-page "http://dvdisaster.net/en/index.html")
|
||||||
|
(synopsis "error correcting codes for optical media images")
|
||||||
|
(description "Optical media (CD,DVD,BD) keep their data only for a
|
||||||
|
finite time (typically for many years). After that time, data loss develops
|
||||||
|
slowly with read errors growing from the outer media region towards the
|
||||||
|
inside.
|
||||||
|
|
||||||
|
Dvdisaster stores data on CD/DVD/BD (supported media) in a way that it is
|
||||||
|
fully recoverable even after some read errors have developed. This enables
|
||||||
|
you to rescue the complete data to a new medium.
|
||||||
|
|
||||||
|
Data loss is prevented by using error correcting codes. Error correction
|
||||||
|
data is either added to the medium or kept in separate error correction
|
||||||
|
files. Dvdisaster works at the image level so that the recovery does not
|
||||||
|
depend on the file system of the medium. The maximum error correction
|
||||||
|
capacity is user-selectable.")
|
||||||
|
(license gpl2+)))
|
||||||
|
|
Loading…
Reference in a new issue