about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/my/myrescue/package.nix
blob: 1f47499c55bbec055c3fb9ef6fb1910026944f5d (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
28
29
30
31
32
33
34
35
36
37
38
39
{ lib
, stdenv
, fetchurl
, installShellFiles
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "myrescue";
  version = "0.9.8";

  src = fetchurl {
    url = "mirror://sourceforge/project/myrescue/myrescue/myrescue-${finalAttrs.version}/myrescue-${finalAttrs.version}.tar.gz";
    hash = "sha256-tO9gkDpEtmySatzV2Ktw3eq5SybCUGAUmKXiSxnkwdc=";
  };

  nativeBuildInputs = [ installShellFiles ];

  sourceRoot = "./src";

  patches = [
    ./0001-darwin-build-fixes.patch
  ];

  installPhase = ''
    runHook preInstall
    install -Dm755 myrescue -t $out/bin
    installManPage ../doc/myrescue.1
    runHook postInstall
  '';

  meta = with lib; {
    description = "Hard disk recovery tool that reads undamaged regions first";
    mainProgram = "myrescue";
    homepage = "https://myrescue.sourceforge.net";
    maintainers = with maintainers; [ d3vil0p3r ];
    platforms = platforms.unix;
    license = licenses.gpl2Plus;
  };
})