1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-01 06:45:55 +02:00

gnu: openssl@1.0: Replacement now has an accurate 'version' field.

* gnu/packages/tls.scm (openssl-1.0.2j)[name, version]: New fields.
This commit is contained in:
Ludovic Courtès
2016-10-03 23:09:23 +02:00
parent 57bdd79e48
commit 8389e6f06e
+16 -16
View File
@@ -369,22 +369,22 @@ required structures.")
(home-page "http://www.openssl.org/")))
(define openssl-1.0.2j
(package (inherit openssl)
(source
(let ((name "openssl")
(version "1.0.2j"))
(origin
(method url-fetch)
(uri (list (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
"0cf4ar97ijfc7mg35zdgpad6x8ivkdx9qii6mz35khi1ps9g5bz7"))
(patches (search-patches "openssl-runpath.patch"
"openssl-c-rehash-in.patch")))))))
(package
(inherit openssl)
(name "openssl")
(version "1.0.2j")
(source (origin
(method url-fetch)
(uri (list (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
"0cf4ar97ijfc7mg35zdgpad6x8ivkdx9qii6mz35khi1ps9g5bz7"))
(patches (search-patches "openssl-runpath.patch"
"openssl-c-rehash-in.patch"))))))
(define-public openssl-next
(package