3
0
Fork 0
forked from mirrors/nixpkgs

Adding tesseract, an OCR engine I just found but never tried.

svn path=/nixpkgs/trunk/; revision=26952
This commit is contained in:
Lluís Batlle i Rossell 2011-04-24 18:04:07 +00:00
parent 3ae0255bbd
commit 626f654602
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ stdenv, fetchurl, libtiff }:
stdenv.mkDerivation {
name = "tesseract-3.0.0";
src = fetchurl {
url = http://tesseract-ocr.googlecode.com/files/tesseract-3.00.tar.gz;
sha256 = "111r9hy1rcs2ch4kdi9dkzwch3xg38vv379sf3cjpkswkigx8clw";
};
buildInputs = [ libtiff ];
meta = {
description = "OCR engine";
homepage = http://code.google.com/p/tesseract-ocr/;
license = "Apache2.0";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}

View file

@ -6862,6 +6862,8 @@ let
withKde = getConfig [ "taskJuggler" "kde" ] false;
};
tesseract = callPackage ../applications/graphics/tesseract { };
thinkingRock = callPackage ../applications/misc/thinking-rock { };
thunderbird = thunderbird3;