diff options
author | Marius Bakke <marius@gnu.org> | 2022-08-29 17:26:21 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-08-29 17:49:58 +0200 |
commit | 608f9efc34aa31d00260fbed6845f2cc9a176b17 (patch) | |
tree | 1b733b8879f4790fdc7f6ba0f80d5fd40c230ae2 /gnu/packages/ocr.scm | |
parent | 83c86fa446933ea905801de132ec6c36a99fd422 (diff) |
gnu: tesseract-ocr: Propagate leptonica.
* gnu/packages/ocr.scm (tesseract-ocr)[inputs]: Move LEPTONICA ...
[propagated-inputs]: ... here.
Diffstat (limited to 'gnu/packages/ocr.scm')
-rw-r--r-- | gnu/packages/ocr.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/ocr.scm b/gnu/packages/ocr.scm index 21d257ef24..0382e0d869 100644 --- a/gnu/packages/ocr.scm +++ b/gnu/packages/ocr.scm @@ -177,9 +177,11 @@ models for the Tesseract OCR Engine.") (inputs (list cairo icu4c - leptonica pango python-wrapper)) + (propagated-inputs + ;; Required by tesseract.pc. + (list leptonica)) (native-search-paths (list (search-path-specification (variable "TESSDATA_PREFIX") (files (list "share/tesseract-ocr/tessdata")) |