* Added TestDisk, a program for fixing unbootable disks.
svn path=/nixpkgs/trunk/; revision=9318
This commit is contained in:
22
pkgs/tools/misc/testdisk/default.nix
Normal file
22
pkgs/tools/misc/testdisk/default.nix
Normal file
@@ -0,0 +1,22 @@
|
||||
{stdenv, fetchurl, ncurses, libjpeg, e2fsprogs, zlib, openssl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "testdisk-6.8";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://www.cgsecurity.org/testdisk-6.8.tar.bz2;
|
||||
sha256 = "0cyqikcyi6zj671kkr8vydqskh2r7f3n1v3xks1vh1biaffqq2ir";
|
||||
};
|
||||
|
||||
buildInputs = [ncurses libjpeg e2fsprogs zlib openssl];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.cgsecurity.org/wiki/TestDisk;
|
||||
license = "GPL";
|
||||
description = "
|
||||
TestDisk is a program for data recovery, primarily designed to
|
||||
help recover lost partitions and/or make non-booting disks
|
||||
bootable again
|
||||
";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user