guix-commits
[Top][All Lists]
Advanced

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

03/06: gnu: curl: Replace with 7.66.0 [fixes CVE-2019-5481, CVE-2019-548


From: guix-commits
Subject: 03/06: gnu: curl: Replace with 7.66.0 [fixes CVE-2019-5481, CVE-2019-5482].
Date: Sun, 13 Oct 2019 16:50:09 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit 046915dead530a0a7918063739e8ac0de5cd5890
Author: Marius Bakke <address@hidden>
Date:   Sun Oct 13 20:51:17 2019 +0200

    gnu: curl: Replace with 7.66.0 [fixes CVE-2019-5481, CVE-2019-5482].
    
    * gnu/packages/curl.scm (curl-7.66.0): New variable.
    (curl)[replacement]: New field.
---
 gnu/packages/curl.scm | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/curl.scm b/gnu/packages/curl.scm
index 5e1e7eb..aa5d24c 100644
--- a/gnu/packages/curl.scm
+++ b/gnu/packages/curl.scm
@@ -4,7 +4,7 @@
 ;;; Copyright © 2015 Tomáš Čech <address@hidden>
 ;;; Copyright © 2015 Ludovic Courtès <address@hidden>
 ;;; Copyright © 2016, 2017, 2019 Leo Famulari <address@hidden>
-;;; Copyright © 2017 Marius Bakke <address@hidden>
+;;; Copyright © 2017, 2019 Marius Bakke <address@hidden>
 ;;; Copyright © 2017 Efraim Flashner <address@hidden>
 ;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <address@hidden>
 ;;; Copyright © 2018 Roel Janssen <address@hidden>
@@ -51,6 +51,7 @@
   (package
    (name "curl")
    (version "7.65.3")
+   (replacement curl-7.66.0)
    (source (origin
             (method url-fetch)
             (uri (string-append "https://curl.haxx.se/download/curl-";
@@ -142,6 +143,18 @@ tunneling, and so on.")
                                   "See COPYING in the distribution."))
    (home-page "https://curl.haxx.se/";)))
 
+(define curl-7.66.0
+  (package
+    (inherit curl)
+    (version "7.66.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://curl.haxx.se/download/curl-";
+                                  version ".tar.xz"))
+              (sha256
+               (base32
+                "1hcqxpibhknhjy56wcxz5vd6m9ggx3ykwp3wp5wx05ih36481d6v"))))))
+
 (define-public kurly
   (package
     (name "kurly")



reply via email to

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