diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2024-10-07 11:57:02 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-10-24 14:50:09 +0200 |
commit | 3196e072d730acd633f04184461597c55efc463f (patch) | |
tree | 96674518960d1d2d1174c0a336d201354920410c /gnu | |
parent | d73598c786310bf1d5bf854122eb022d8c793c83 (diff) | |
download | guix-3196e072d730acd633f04184461597c55efc463f.tar.gz guix-3196e072d730acd633f04184461597c55efc463f.zip |
gnu: xerces-c: Update to 3.2.5. [security fixes]
This fixes CVE-2023-37536.
* gnu/packages/xml.scm (xerces-c): Update to 3.2.5.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/xml.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 6fa2183592..cfd53a291a 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -1516,14 +1516,14 @@ files. It is designed to be fast and to handle large input files.") (define-public xerces-c (package (name "xerces-c") - (version "3.2.3") + (version "3.2.5") (source (origin (method url-fetch) (uri (string-append "mirror://apache/xerces/c/3/sources/" "xerces-c-" version ".tar.xz")) (sha256 (base32 - "0jf1khvlssg31vkxbc25dxjxcxm56xb8nywj1sypj6hxzjlrkz0j")))) + "0c42jhnhq63yzvj8whl5dpzf7p1lnd6h00kzpz4ipcj5aq1ycfb2")))) (build-system gnu-build-system) (arguments (let ((system (or (%current-target-system) |