mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: lcms: Fix an out-of-bounds read.
* gnu/packages/patches/lcms-fix-out-of-bounds-read.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/ghostscript.scm (lcms)[replacement]: New field. [properties]: Specify the 'cpe-name'. (lcms/fixed): New variable.
This commit is contained in:
parent
bed2e0dfd1
commit
84b60a7cdf
3 changed files with 44 additions and 0 deletions
|
@ -39,6 +39,7 @@
|
|||
(define-public lcms
|
||||
(package
|
||||
(name "lcms")
|
||||
(replacement lcms/fixed)
|
||||
(version "2.6")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
|
@ -58,6 +59,14 @@ Consortium standard (ICC), approved as ISO 15076-1.")
|
|||
(license license:x11)
|
||||
(home-page "http://www.littlecms.com/")))
|
||||
|
||||
(define lcms/fixed
|
||||
(package
|
||||
(inherit lcms)
|
||||
(source
|
||||
(origin
|
||||
(inherit (package-source lcms))
|
||||
(patches (search-patches "lcms-fix-out-of-bounds-read.patch"))))))
|
||||
|
||||
(define-public libpaper
|
||||
(package
|
||||
(name "libpaper")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue