mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-15 19:40:46 +02:00
gnu: s2n: Update to 1.1.0.
* gnu/packages/tls.scm (s2n): Update to 1.1.0. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
206f2693fd
commit
cf48bf8607
1 changed files with 26 additions and 27 deletions
|
@ -1157,20 +1157,19 @@ derived from Mozilla's collection.")
|
||||||
(license license:mpl2.0))))
|
(license license:mpl2.0))))
|
||||||
|
|
||||||
(define-public s2n
|
(define-public s2n
|
||||||
(let* ((commit "7f43b102def1d52422f6c3e48d5cb3e6dd26c646")
|
|
||||||
(revision "1"))
|
|
||||||
(package
|
(package
|
||||||
(name "s2n")
|
(name "s2n")
|
||||||
(version (git-version "1.0.10" revision commit))
|
; Update only when updating aws-crt-cpp.
|
||||||
|
(version "1.1.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/aws/s2n-tls")
|
(url "https://github.com/aws/s2n-tls")
|
||||||
(commit commit)))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"06rqg0vcispi63cmcza9j7ix80l0w6wmbw81qlg4fq8l1lg9nyvl"))))
|
"14dhdddlph36nshdkh0v33718hxjx5vxqxmkw7707393q0qrgipw"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:configure-flags
|
'(#:configure-flags
|
||||||
|
@ -1180,16 +1179,16 @@ derived from Mozilla's collection.")
|
||||||
("openssl:static" ,openssl "static")))
|
("openssl:static" ,openssl "static")))
|
||||||
(synopsis "SSL/TLS implementation in C99")
|
(synopsis "SSL/TLS implementation in C99")
|
||||||
(description
|
(description
|
||||||
"This library provides a C99 implementation of SSL/TLS. It is designed
|
"This library provides a C99 implementation of SSL/TLS. It is designed to
|
||||||
to be familiar to users of the widely-used POSIX I/O APIs. It supports
|
be familiar to users of the widely-used POSIX I/O APIs. It supports blocking,
|
||||||
blocking, non-blocking, and full-duplex I/O. There are no locks or mutexes.
|
non-blocking, and full-duplex I/O. There are no locks or mutexes.
|
||||||
|
|
||||||
As it can be difficult to keep track of which encryption algorithms and
|
As it can be difficult to keep track of which encryption algorithms and
|
||||||
protocols are best to use, s2n-tls features a simple API to use the latest
|
protocols are best to use, s2n-tls features a simple API to use the latest
|
||||||
default set of preferences. Remaining on a specific version for backwards
|
default set of preferences. Remaining on a specific version for backwards
|
||||||
compatibility is also supported.")
|
compatibility is also supported.")
|
||||||
(home-page "https://github.com/aws/s2n-tls")
|
(home-page "https://github.com/aws/s2n-tls")
|
||||||
(license license:asl2.0))))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public wolfssl
|
(define-public wolfssl
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue