3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: libtiff: Update to 4.2.0 [security fixes].

Non-exhaustively, fixes CVE-2020-35523, CVE-2020-35522 and CVE-2020-35521.

* gnu/packages/image.scm (libtiff/fixed): New variable.
(libtiff)[replacement]: Graft.
This commit is contained in:
Léo Le Bouter 2021-03-10 00:45:48 +01:00
parent 82a2f182c5
commit 6320700b11
No known key found for this signature in database
GPG key ID: 45A8B1E86BCD10A6

View file

@ -590,6 +590,7 @@ extracting icontainer icon files.")
(sha256
(base32
"0d46bdvxdiv59lxnb0xz9ywm8arsr6xsapi5s6y6vnys2wjz6aax"))))
(replacement libtiff/fixed)
(build-system gnu-build-system)
(outputs '("out"
"doc")) ;1.3 MiB of HTML documentation
@ -612,6 +613,19 @@ collection of tools for doing simple manipulations of TIFF images.")
"See COPYRIGHT in the distribution."))
(home-page "http://www.simplesystems.org/libtiff/")))
(define-public libtiff/fixed
(package
(inherit libtiff)
(version "4.2.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://download.osgeo.org/libtiff/tiff-"
version ".tar.gz"))
(sha256
(base32
"1jrkjv0xya9radddn8idxvs2gqzp3l2b1s8knlizmn7ad3jq817b"))))))
(define-public leptonica
(package
(name "leptonica")