2017-04-11 01:30:45 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, autoconf-archive, pkgconfig
|
2018-12-18 18:02:13 +00:00
|
|
|
, leptonica, libpng, libtiff, icu, pango, opencl-headers }:
|
2017-04-11 01:30:45 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "tesseract";
|
2020-01-17 12:04:34 +00:00
|
|
|
version = "4.1.1";
|
2017-04-11 01:30:45 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tesseract-ocr";
|
|
|
|
repo = "tesseract";
|
2018-11-24 23:23:18 +00:00
|
|
|
rev = version;
|
2020-01-17 12:04:34 +00:00
|
|
|
sha256 = "1ca27zbjpx35nxh9fha410z3jskwyj06i5hqiqdc08s2d7kdivwn";
|
2017-04-11 01:30:45 +01:00
|
|
|
};
|
|
|
|
|
2018-12-18 18:02:13 +00:00
|
|
|
enableParallelBuilding = true;
|
2017-04-11 01:30:45 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook autoconf-archive ];
|
|
|
|
buildInputs = [ leptonica libpng libtiff icu pango opencl-headers ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "OCR engine";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/tesseract-ocr/tesseract";
|
2017-04-11 01:30:45 +01:00
|
|
|
license = stdenv.lib.licenses.asl20;
|
2018-12-18 18:02:13 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ viric earvstedt ];
|
|
|
|
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
2017-04-11 01:30:45 +01:00
|
|
|
};
|
|
|
|
}
|