dvdisaster: new package

dvdisaster: new package
This commit is contained in:
Anonymous 2014-09-08 03:29:56 +02:00 committed by Shea Levy
parent 4671e59576
commit 55909ad36b
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ stdenv, fetchurl, pkgconfig, which, gettext, intltool
, glib, gtk2
}:
stdenv.mkDerivation rec {
name = "dvdisaster-0.72.6";
src = fetchurl {
url = "http://dvdisaster.net/downloads/${name}.tar.bz2";
sha256 = "e9787dea39aeafa38b26604752561bc895083c17b588489d857ac05c58be196b";
};
postPatch = ''
patchShebangs ./
'';
buildInputs = [
pkgconfig which gettext intltool
glib gtk2
];
meta = {
homepage = http://dvdisaster.net/;
description =
"Stores data on CD/DVD/BD in a way that it is fully recoverable even " +
"after some read errors have developed";
license = stdenv.lib.licenses.gpl2;
};
}

View File

@ -968,6 +968,8 @@ let
duply = callPackage ../tools/backup/duply { };
dvdisaster = callPackage ../tools/cd-dvd/dvdisaster { };
dvdplusrwtools = callPackage ../tools/cd-dvd/dvd+rw-tools { };
dvgrab = callPackage ../tools/video/dvgrab { };