3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: openssl: Replace with OpenSSL 1.0.2o [fixes CVE-2018-0739].

* gnu/packages/tls.scm (openssl)[replacement]: New field.
(openssl-1.0.2o): New variable.
This commit is contained in:
Leo Famulari 2018-03-27 16:01:56 -04:00
parent 1cde746700
commit 590bdc149b
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -255,6 +255,7 @@ required structures.")
(define-public openssl
(package
(name "openssl")
(replacement openssl-1.0.2o)
(version "1.0.2n")
(source (origin
(method url-fetch)
@ -399,6 +400,27 @@ required structures.")
(license license:openssl)
(home-page "https://www.openssl.org/")))
(define openssl-1.0.2o
(package
(inherit openssl)
(name "openssl")
(version "1.0.2o")
(source (origin
(inherit (package-source openssl))
(uri (list (string-append "https://www.openssl.org/source/openssl-"
version ".tar.gz")
(string-append "ftp://ftp.openssl.org/source/"
name "-" version ".tar.gz")
(string-append "ftp://ftp.openssl.org/source/old/"
(string-trim-right version char-set:letter)
"/" name "-" version ".tar.gz")))
(sha256
(base32
"0kcy13l701054nhpbd901mz32v1kn4g311z0nifd83xs2jbmqgzc"))
;; Erase the inherited snippet, which isn't applicable to
;; OpenSSL 1.0.2o.
(snippet #f)))))
(define-public openssl-next
(package
(inherit openssl)