summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorLeo Famulari <leo@famulari.name>2021-04-16 16:45:18 -0400
committerLeo Famulari <leo@famulari.name>2021-04-16 16:57:27 -0400
commit0cb4032f9a799e5b1a4f35b7a1881c1b69104466 (patch)
tree236de35b457cf0a8b8d81b2db21f5dd3fa15252c /gnu
parentc3926120ba5ea76f531541b7926ccb6739575e0e (diff)
gnu: OpenSSL: Absorb grafted replacement.
* gnu/packages/tls.scm (openssl): Update to 1.1.1j. [replacement]: Remove field. (openssl/fixed): Remove variable.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/tls.scm23
1 files changed, 2 insertions, 21 deletions
diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index 25493cc7ca6..25dcdd72287 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -296,8 +296,7 @@ required structures.")
296(define-public openssl 296(define-public openssl
297 (package 297 (package
298 (name "openssl") 298 (name "openssl")
299 (replacement openssl/fixed) 299 (version "1.1.1j")
300 (version "1.1.1i")
301 (source (origin 300 (source (origin
302 (method url-fetch) 301 (method url-fetch)
303 (uri (list (string-append "https://www.openssl.org/source/openssl-" 302 (uri (list (string-append "https://www.openssl.org/source/openssl-"
@@ -310,7 +309,7 @@ required structures.")
310 (patches (search-patches "openssl-1.1-c-rehash-in.patch")) 309 (patches (search-patches "openssl-1.1-c-rehash-in.patch"))
311 (sha256 310 (sha256
312 (base32 311 (base32
313 "0hjj1phcwkz69lx1lrvr9grhpl4y529mwqycqc1hdla1zqsnmgp8")))) 312 "1gw17520vh13izy1xf5q0a2fqgcayymjjj5bk0dlkxndfnszrwma"))))
314 (build-system gnu-build-system) 313 (build-system gnu-build-system)
315 (outputs '("out" 314 (outputs '("out"
316 "doc" ;6.8 MiB of man3 pages and full HTML documentation 315 "doc" ;6.8 MiB of man3 pages and full HTML documentation
@@ -431,24 +430,6 @@ required structures.")
431 (license license:openssl) 430 (license license:openssl)
432 (home-page "https://www.openssl.org/"))) 431 (home-page "https://www.openssl.org/")))
433 432
434(define-public openssl/fixed
435 (package
436 (inherit openssl)
437 (version "1.1.1k")
438 (source (origin
439 (method url-fetch)
440 (uri (list (string-append "https://www.openssl.org/source/openssl-"
441 version ".tar.gz")
442 (string-append "ftp://ftp.openssl.org/source/"
443 "openssl-" version ".tar.gz")
444 (string-append "ftp://ftp.openssl.org/source/old/"
445 (string-trim-right version char-set:letter)
446 "/openssl-" version ".tar.gz")))
447 (patches (search-patches "openssl-1.1-c-rehash-in.patch"))
448 (sha256
449 (base32
450 "1rdfzcrxy9y38wqdw5942vmdax9hjhgrprzxm42csal7p5shhal9"))))))
451
452(define-public openssl-1.0 433(define-public openssl-1.0
453 (package 434 (package
454 (inherit openssl) 435 (inherit openssl)