gnu: openssl: Update to 1.1.1m [security fixes].
* gnu/packages/tls.scm (openssl/fixed): New variable. (openssl)[replacement]: New field.
This commit is contained in:
parent
f15ca337be
commit
1402c6abe1
1 changed files with 20 additions and 0 deletions
|
|
@ -383,6 +383,7 @@ OpenSSL for TARGET."
|
||||||
(package
|
(package
|
||||||
(name "openssl")
|
(name "openssl")
|
||||||
(version "1.1.1l")
|
(version "1.1.1l")
|
||||||
|
(replacement openssl/fixed)
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (list (string-append "https://www.openssl.org/source/openssl-"
|
(uri (list (string-append "https://www.openssl.org/source/openssl-"
|
||||||
|
|
@ -508,6 +509,25 @@ OpenSSL for TARGET."
|
||||||
(license license:openssl)
|
(license license:openssl)
|
||||||
(home-page "https://www.openssl.org/")))
|
(home-page "https://www.openssl.org/")))
|
||||||
|
|
||||||
|
(define openssl/fixed
|
||||||
|
(package
|
||||||
|
(inherit openssl)
|
||||||
|
(name "openssl")
|
||||||
|
(version "1.1.1m")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (list (string-append "https://www.openssl.org/source/openssl-"
|
||||||
|
version ".tar.gz")
|
||||||
|
(string-append "ftp://ftp.openssl.org/source/"
|
||||||
|
"openssl-" version ".tar.gz")
|
||||||
|
(string-append "ftp://ftp.openssl.org/source/old/"
|
||||||
|
(string-trim-right version char-set:letter)
|
||||||
|
"/openssl-" version ".tar.gz")))
|
||||||
|
(patches (search-patches "openssl-1.1-c-rehash-in.patch"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"15kcvdi69jka67sk1l3a50c26cb7xv9xiwdrgky4bji3ifz9k4gq"))))))
|
||||||
|
|
||||||
;; We will not add any new uses of this package. If you add new code that uses
|
;; We will not add any new uses of this package. If you add new code that uses
|
||||||
;; this package, your change will be reverted!
|
;; this package, your change will be reverted!
|
||||||
;;
|
;;
|
||||||
|
|
|
||||||
Reference in a new issue