guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: librsvg: Fix CVE-2019-20446.


From: guix-commits
Subject: branch master updated: gnu: librsvg: Fix CVE-2019-20446.
Date: Tue, 03 Mar 2020 02:21:55 -0500

This is an automated email from the git hooks/post-receive script.

efraim pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 23f33de  gnu: librsvg: Fix CVE-2019-20446.
23f33de is described below

commit 23f33de151368f52832fd96048b342bd1a6e8c74
Author: Efraim Flashner <address@hidden>
AuthorDate: Tue Mar 3 09:21:17 2020 +0200

    gnu: librsvg: Fix CVE-2019-20446.
    
    * gnu/packages/gnome.scm (librsvg)[replacement]: New field.
    (librsvg/fixed): New private variable.
---
 gnu/packages/gnome.scm | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index ff262d1..7cfe35d 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -2074,6 +2074,7 @@ dealing with different structured file formats.")
 
 (define-public librsvg
   (package
+    (replacement "librsvg/fixed")
     (name "librsvg")
     (version "2.40.20")
     (source (origin
@@ -2138,6 +2139,20 @@ dealing with different structured file formats.")
 library.")
     (license license:lgpl2.0+)))
 
+(define librsvg/fixed
+  (package
+    (inherit librsvg)
+    (name "librsvg")
+    (version "2.40.21")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://gnome/sources/" name "/"
+                                  (version-major+minor version)  "/"
+                                  name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1fljkag2gr7c4k5mn798lgf9903xslz8h51bgvl89nnay42qjqpp"))))))
+
 (define* (computed-origin-method gexp-promise hash-algo hash
                                  #:optional (name "source")
                                  #:key (system (%current-system))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]