aboutsummaryrefslogtreecommitdiff
path: root/etc/system-tests.scm
diff options
context:
space:
mode:
authorLeo Famulari <leo@famulari.name>2021-12-05 23:35:16 -0500
committerLeo Famulari <leo@famulari.name>2021-12-05 23:36:42 -0500
commit764be13ee62eff202ee2dd711167d0bfa4d2ec3f (patch)
treedc57b4a0e24e083a84b90366d5aa1e2fcf64d97a /etc/system-tests.scm
parentd8401fb508692c80a5048f4acc0cf444a566a010 (diff)
downloadguix-764be13ee62eff202ee2dd711167d0bfa4d2ec3f.tar.gz
guix-764be13ee62eff202ee2dd711167d0bfa4d2ec3f.zip
gnu: isync: Update to 1.4.4 [fixes CVE-2021-{3657,44143}].
* gnu/packages/mail.scm (isync): Update to 1.4.4.
Diffstat (limited to 'etc/system-tests.scm')
0 files changed, 0 insertions, 0 deletions
/licenses/>. (define-module (gnu packages ocr) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (gnu packages compression) #:use-module (gnu packages image)) (define-public ocrad (package (name "ocrad") (version "0.27") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/ocrad/ocrad-" version ".tar.lz")) (sha256 (base32 "0divffvcaim89g4pvqs8kslbcxi475bcl3b4ynphf284k9zfdgx9")))) (build-system gnu-build-system) (native-inputs `(("lzip" ,lzip))) (home-page "https://www.gnu.org/software/ocrad/") (synopsis "Optical character recognition based on feature extraction") (description "GNU Ocrad is an optical character recognition program based on a feature extraction method. It can read images in PBM, PGM or PPM formats and it produces text in 8-bit or UTF-8 formats.") (license license:gpl3+))) (define-public tesseract-ocr (package (name "tesseract-ocr") (version "3.04.01") (source (origin (method url-fetch) (uri (string-append "https://github.com/tesseract-ocr/tesseract/archive/" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "0snwd8as5i8vx7zkimpd2yg898jl96zf90r65a9w615f2hdkxxjp")))) (build-system gnu-build-system) (inputs `(("leptonica" ,leptonica))) (arguments '(#:configure-flags (let ((leptonica (assoc-ref %build-inputs "leptonica"))) (list (string-append "LIBLEPT_HEADERSDIR=" leptonica "/include"))))) (home-page "https://github.com/tesseract-ocr") (synopsis "Optical character recognition engine") (description "Tesseract is an optical character recognition (OCR) engine with very high accuracy. It supports many languages, output text formatting, hOCR positional information and page layout analysis. Several image formats are supported through the Leptonica library. It can also detect whether text is monospaced or proportional.") (license license:asl2.0)))