summaryrefslogtreecommitdiff
path: root/pkgs/by-name/wx/wxhexeditor/package.nix
blob: 22a01f1d7bef063882c0763f2792e9cd229e85a5 (about) (plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
  lib,
  stdenv,
  fetchFromGitHub,
  fetchpatch,
  autoconf,
  automake,
  gettext,
  libtool,
  python3,
  wxGTK32,
  wrapGAppsHook3,
  llvmPackages,
}:

stdenv.mkDerivation rec {
  pname = "wxhexeditor";
  version = "0.24";

  src = fetchFromGitHub {
    repo = "wxHexEditor";
    owner = "EUA";
    rev = "v${version}";
    hash = "sha256-EmdWYifwewk40s1TARYoUzx/qhyMmgmUC9tr5KKCtiM=";
  };

  patches = [
    # https://github.com/EUA/wxHexEditor/issues/90
    (fetchpatch {
      url = "https://github.com/EUA/wxHexEditor/commit/d0fa3ddc3e9dc9b05f90b650991ef134f74eed01.patch";
      hash = "sha256-0m+dvsPlEoRnc22O73InR+NLPWb5JiSzEwdDmyE4i/E=";
    })
    ./missing-semicolon.patch
  ];

  postPatch =
    ''
      substituteInPlace Makefile \
        --replace-fail "/usr" "$out" \
        --replace-fail "mhash; ./configure" "mhash; ./configure --prefix=$out"
    ''
    + lib.optionalString stdenv.cc.isClang ''
      substituteInPlace Makefile \
        --replace-fail "-lgomp" "-lomp"
    '';

  strictDeps = true;

  nativeBuildInputs = [
    autoconf
    automake
    gettext
    libtool
    python3
    wxGTK32
    wrapGAppsHook3
  ];

  buildInputs = lib.optionals stdenv.cc.isClang [
    llvmPackages.openmp
  ];

  preConfigure = "patchShebangs .";

  makeFlags = lib.optionals stdenv.cc.isGNU [
    "OPTFLAGS=-fopenmp"
  ];

  meta = {
    description = "Hex Editor / Disk Editor for Huge Files or Devices";
    longDescription = ''
      This is not an ordinary hex editor, but could work as low level disk editor too.
      If you have problems with your HDD or partition, you can recover your data from HDD or
      from partition via editing sectors in raw hex.
      You can edit your partition tables or you could recover files from File System by hand
      with help of wxHexEditor.
      Or you might want to analyze your big binary files, partitions, devices... If you need
      a good reverse engineer tool like a good hex editor, you welcome.
      wxHexEditor could edit HDD/SDD disk devices or partitions in raw up to exabyte sizes.
    '';
    homepage = "http://www.wxhexeditor.org/";
    license = lib.licenses.gpl2Plus;
    maintainers = with lib.maintainers; [ wegank ];
    mainProgram = "wxHexEditor";
    platforms = lib.platforms.unix;
  };
}