diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2024-10-08 00:05:45 +0200 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-10-14 09:16:29 +0800 |
commit | fce2e41db4469575e26dd774614803c14c80c21e (patch) | |
tree | 858ab73fd58e786362c81229f6bf237fda53fe79 /gnu/packages | |
parent | b403ff41604d34ca35588e1a1dd43b48a5eda064 (diff) | |
download | guix-fce2e41db4469575e26dd774614803c14c80c21e.tar guix-fce2e41db4469575e26dd774614803c14c80c21e.tar.gz |
gnu: vips: Update to 8.15.3. [security fixes]
This fixes CVE-2023-40032.
* gnu/packages/image-processing.scm (vips): Update to 8.15.3.
[build-system]: Switch to meson-build-system.
[inputs]: Add glib:bin.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/image-processing.scm | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/gnu/packages/image-processing.scm b/gnu/packages/image-processing.scm index 033e006d06..1a24837ac8 100644 --- a/gnu/packages/image-processing.scm +++ b/gnu/packages/image-processing.scm @@ -23,6 +23,7 @@ ;;; Copyright © 2022 Tomasz Jeneralczyk <tj@schwi.pl> ;;; Copyright © 2022 Paul A. Patience <paul@apatience.com> ;;; Copyright © 2023 Cairn <cairn@pm.me> +;;; Copyright © 2024 Nicolas Graves <ngraves@ngraves.fr> ;;; ;;; This file is part of GNU Guix. ;;; @@ -49,6 +50,7 @@ #:use-module (guix build-system qt) #:use-module (guix build-system cmake) #:use-module (guix build-system gnu) + #:use-module (guix build-system meson) #:use-module (guix build-system python) #:use-module (guix build-system pyproject) #:use-module (gnu packages) @@ -776,16 +778,16 @@ the OpenCV-Python library.") (define-public vips (package (name "vips") - (version "8.13.1") + (version "8.15.3") (source (origin (method url-fetch) (uri (string-append "https://github.com/libvips/libvips/releases/download/v" - version "/vips-" version ".tar.gz")) + version "/vips-" version ".tar.xz")) (sha256 - (base32 "00kp3439jcqv9l2gcjg88xzvlq8clv54z1m3x66i3chvarz7ndxd")))) - (build-system gnu-build-system) + (base32 "182j20dw38f1nyfx8cf7cjsr0k4nl7lfk3wm2d0ddypa6vsxj9ry")))) + (build-system meson-build-system) (native-inputs (list gobject-introspection pkg-config)) (inputs @@ -793,6 +795,7 @@ the OpenCV-Python library.") fftw giflib glib + (list glib "bin") hdf5 imagemagick lcms |