summary refs log tree commit diff
path: root/pkgs/tools/system/safecopy
diff options
context:
space:
mode:
authorMathijs Kwik <mathijs@bluescreen303.nl>2012-11-17 20:14:55 +0100
committerMathijs Kwik <mathijs@bluescreen303.nl>2012-11-17 21:27:18 +0100
commitb4e7e21134f5c675018146972ae2a1fc52e96731 (patch)
tree3358f042adff9e440bc4d4dbe05a5ade75c3aa86 /pkgs/tools/system/safecopy
parentaa2c066f395369ccc8ac6173bb84808f28488b86 (diff)
downloadnixpkgs-b4e7e21134f5c675018146972ae2a1fc52e96731.tar
nixpkgs-b4e7e21134f5c675018146972ae2a1fc52e96731.tar.gz
nixpkgs-b4e7e21134f5c675018146972ae2a1fc52e96731.tar.bz2
nixpkgs-b4e7e21134f5c675018146972ae2a1fc52e96731.tar.lz
nixpkgs-b4e7e21134f5c675018146972ae2a1fc52e96731.tar.xz
nixpkgs-b4e7e21134f5c675018146972ae2a1fc52e96731.tar.zst
nixpkgs-b4e7e21134f5c675018146972ae2a1fc52e96731.zip
add package: "safecopy-1.7"
Diffstat (limited to 'pkgs/tools/system/safecopy')
-rw-r--r--pkgs/tools/system/safecopy/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/tools/system/safecopy/default.nix b/pkgs/tools/system/safecopy/default.nix
new file mode 100644
index 00000000000..049503b1531
--- /dev/null
+++ b/pkgs/tools/system/safecopy/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  name = "safecopy-1.7";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/projects/safecopy/safecopy/${name}/${name}.tar.gz";
+    sha256 = "1zf4kk9r8za9pn4hzy1y3j02vrhl1rxfk5adyfq0w0k48xfyvys2";
+  };
+
+  meta = {
+    description = "data recovery tool for damaged hardware";
+
+    longDescription =
+      '' Safecopy is a data recovery tool which tries to extract as much data as possible from a
+         problematic (i.e. damaged sectors) source - like floppy drives, hard disk partitions, CDs,
+         tape devices, etc, where other tools like dd would fail due to I/O errors.
+
+         Safecopy includes a low level IO layer to read CDROM disks in raw mode, and issue device
+         resets and other helpful low level operations on a number of other device classes.
+       '';
+
+    homepage = http://safecopy.sourceforge.net;
+
+    license = "GPLv2+";
+
+    platforms = stdenv.lib.platforms.all;
+    maintainers = [ stdenv.lib.maintainers.bluescreen303 ];
+  };
+}