mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 23:32:24 -05:00
gnu: openssl: Update to 1.1.1j [security fixes].
* gnu/packages/tls.scm (openssl/fixed): New variable. (openssl)[replacement]: Graft.
This commit is contained in:
parent
ee8e4ba7aa
commit
4a8b529ce1
1 changed files with 19 additions and 0 deletions
|
@ -301,6 +301,7 @@ (define-public openssl
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0hjj1phcwkz69lx1lrvr9grhpl4y529mwqycqc1hdla1zqsnmgp8"))))
|
"0hjj1phcwkz69lx1lrvr9grhpl4y529mwqycqc1hdla1zqsnmgp8"))))
|
||||||
|
(replacement openssl/fixed)
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(outputs '("out"
|
(outputs '("out"
|
||||||
"doc" ;6.8 MiB of man3 pages and full HTML documentation
|
"doc" ;6.8 MiB of man3 pages and full HTML documentation
|
||||||
|
@ -419,6 +420,24 @@ (define-public openssl
|
||||||
(license license:openssl)
|
(license license:openssl)
|
||||||
(home-page "https://www.openssl.org/")))
|
(home-page "https://www.openssl.org/")))
|
||||||
|
|
||||||
|
(define-public openssl/fixed
|
||||||
|
(package
|
||||||
|
(inherit openssl)
|
||||||
|
(version "1.1.1j")
|
||||||
|
(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
|
||||||
|
"1gw17520vh13izy1xf5q0a2fqgcayymjjj5bk0dlkxndfnszrwma"))))))
|
||||||
|
|
||||||
(define-public openssl-1.0
|
(define-public openssl-1.0
|
||||||
(package
|
(package
|
||||||
(inherit openssl)
|
(inherit openssl)
|
||||||
|
|
Loading…
Reference in a new issue