summary refs log tree commit diff
path: root/pkgs/tools/misc/testdisk/default.nix
blob: 80cbf3661da82cf7c7d167f8d4c234bc905083f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchurl, ncurses, libjpeg, e2fsprogs, zlib, openssl, libuuid, ntfs3g }:

stdenv.mkDerivation {
  name = "testdisk-7.1";

  src = fetchurl {
    url = http://www.cgsecurity.org/testdisk-7.0.tar.bz2;
    sha256 = "0ba4wfz2qrf60vwvb1qsq9l6j0pgg81qgf7fh22siaz649mkpfq0";
  };

  buildInputs = [ ncurses libjpeg zlib openssl libuuid ]
    ++ stdenv.lib.optionals (!stdenv.isDarwin) [ e2fsprogs ntfs3g ];

  enableParallelBuilding = true;

  meta = {
    homepage = https://www.cgsecurity.org/wiki/TestDisk;
    license = stdenv.lib.licenses.gpl2Plus;
    platforms = stdenv.lib.platforms.all;
    maintainers = [ stdenv.lib.maintainers.eelco ];
    longDescription = ''
      TestDisk is a program for data recovery, primarily designed to
      help recover lost partitions and/or make non-booting disks
      bootable again.
    '';
  };
}