summary refs log tree commit diff
path: root/pkgs/tools/misc/testdisk/default.nix
blob: fd237ac15f4acfb932a7180fbba61da213885803 (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
{ stdenv, fetchurl, ncurses, libjpeg, e2fsprogs, zlib, openssl, libuuid, ntfs3g }:

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

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

  buildInputs = [ ncurses libjpeg e2fsprogs zlib openssl libuuid ntfs3g ];

  enableParallelBuilding = true;

  meta = {
    homepage = http://www.cgsecurity.org/wiki/TestDisk;
    license = stdenv.lib.licenses.gpl2Plus;
    platforms = stdenv.lib.platforms.linux;
    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.
    '';
  };
}