summary refs log tree commit diff
path: root/pkgs/tools/cd-dvd/dvdisaster/default.nix
diff options
context:
space:
mode:
authorAnonymous <anonymous@hoi-polloi.org>2014-09-08 03:29:56 +0200
committerShea Levy <shea@shealevy.com>2014-09-17 16:05:07 -0400
commit55909ad36bf9a1d92a0031f3b0faf1bfcc15327e (patch)
tree90e6fd71da0942517e9df247a47df069d6254ead /pkgs/tools/cd-dvd/dvdisaster/default.nix
parent4671e59576baaebcba0ad95920b57f5a4a8af6f7 (diff)
downloadnixpkgs-55909ad36bf9a1d92a0031f3b0faf1bfcc15327e.tar
nixpkgs-55909ad36bf9a1d92a0031f3b0faf1bfcc15327e.tar.gz
nixpkgs-55909ad36bf9a1d92a0031f3b0faf1bfcc15327e.tar.bz2
nixpkgs-55909ad36bf9a1d92a0031f3b0faf1bfcc15327e.tar.lz
nixpkgs-55909ad36bf9a1d92a0031f3b0faf1bfcc15327e.tar.xz
nixpkgs-55909ad36bf9a1d92a0031f3b0faf1bfcc15327e.tar.zst
nixpkgs-55909ad36bf9a1d92a0031f3b0faf1bfcc15327e.zip
dvdisaster: new package
dvdisaster: new package
Diffstat (limited to 'pkgs/tools/cd-dvd/dvdisaster/default.nix')
-rw-r--r--pkgs/tools/cd-dvd/dvdisaster/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/tools/cd-dvd/dvdisaster/default.nix b/pkgs/tools/cd-dvd/dvdisaster/default.nix
new file mode 100644
index 00000000000..b54f342b345
--- /dev/null
+++ b/pkgs/tools/cd-dvd/dvdisaster/default.nix
@@ -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;
+  };
+}