about summary refs log tree commit diff
path: root/pkgs/by-name/sc/scrounge-ntfs/package.nix
blob: 51c0b1860750d311da48a015b7ef2eda4db54656 (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
{ lib
, stdenv
, fetchurl
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "scrounge-ntfs";
  version = "0.9";

  src = fetchurl {
    url = "http://thewalter.net/stef/software/scrounge/scrounge-ntfs-${finalAttrs.version}.tar.gz";
    hash = "sha256-HYrMIMTRPmgAac/vaZ1jaUFchyAl5B0quxgHH0DHJ84=";
  };

  patches = [
    ./darwin.diff
  ];

  meta = with lib; {
    description = "Data recovery program for NTFS file systems";
    mainProgram = "scrounge-ntfs";
    homepage = "http://thewalter.net/stef/software/scrounge/";
    maintainers = with maintainers; [ d3vil0p3r ];
    platforms = platforms.unix;
    license = licenses.bsd3;
  };
})