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
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -369,22 +369,22 @@ (define-public openssl
(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