about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/qt-box-editor/default.nix
blob: 937641021a5c29b21b43c11d94e85166370cadd5 (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
40
41
42
{ mkDerivation
, lib
, fetchFromGitHub
, qtbase
, qtsvg
, qmake
, leptonica
, tesseract4
}:

mkDerivation {
  pname = "qt-box-editor";
  version = "unstable-2019-07-14";

  src = fetchFromGitHub {
    owner = "zdenop";
    repo = "qt-box-editor";
    rev = "cba2929dabc6c715acd1a282ba161fee914c87f6";
    hash = "sha256-3dWnAu0CLO3atjbC1zJEnL3vzsIEecDDDhW3INMfCv4=";
  };

  buildInputs = [ qtbase qtsvg leptonica tesseract4 ];

  nativeBuildInputs = [ qmake ];

  # https://github.com/zdenop/qt-box-editor/issues/87
  postPatch = ''
    sed -i '/allheaders.h/a#include <leptonica/pix_internal.h>' src/TessTools.h

    substituteInPlace qt-box-editor.pro \
      --replace '-llept' '-lleptonica'
  '';

  meta = with lib; {
    description = "Editor of tesseract-ocr box files";
    mainProgram = "qt-box-editor-1.12rc1";
    homepage = "https://github.com/zdenop/qt-box-editor";
    license = licenses.asl20;
    maintainers = [ maintainers.costrouc ];
    platforms = platforms.all;
  };
}