bd01fad0ed
In line with the Nixpkgs manual. A mechanical change, done with this command: find pkgs -name "*.nix" | \ while read f; do \ sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \ done I manually skipped some: * Descriptions starting with an abbreviation, a user name or package name * Frequently generated expressions (haskell-packages.nix)
31 lines
1.0 KiB
Nix
31 lines
1.0 KiB
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "safecopy-1.7";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/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 = stdenv.lib.licenses.gpl2Plus;
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
maintainers = [ stdenv.lib.maintainers.bluescreen303 ];
|
|
};
|
|
}
|