nixpkgs/pkgs/tools/system/safecopy/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
1.1 KiB
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchurl }:
2012-11-17 19:14:55 +00:00
stdenv.mkDerivation rec {
pname = "safecopy";
version = "1.7";
2012-11-17 19:14:55 +00:00
src = fetchurl {
url = "mirror://sourceforge/project/safecopy/safecopy/safecopy-${version}/safecopy-${version}.tar.gz";
2012-11-17 19:14:55 +00:00
sha256 = "1zf4kk9r8za9pn4hzy1y3j02vrhl1rxfk5adyfq0w0k48xfyvys2";
};
meta = {
description = "Data recovery tool for damaged hardware";
2012-11-17 19:14:55 +00:00
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 = "https://safecopy.sourceforge.net";
2012-11-17 19:14:55 +00:00
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl2Plus;
2012-11-17 19:14:55 +00:00
2021-01-15 09:19:50 +00:00
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.bluescreen303 ];
2023-11-27 01:17:53 +00:00
mainProgram = "safecopy";
2012-11-17 19:14:55 +00:00
};
}