mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
gnu: s2n: Update to 1.5.1.
* gnu/packages/tls.scm (s2n): Update to 1.5.1. [arguments]: Re-enable warnings as errors. [supported-systems]: Restrict to 64-bit systems. Change-Id: I09d690c96789961473c846eb8174ddc8a2b1ad4e
This commit is contained in:
parent
eb4b4f3e32
commit
44aba54ed3
1 changed files with 4 additions and 8 deletions
|
@ -1147,7 +1147,7 @@ (define-public s2n
|
||||||
(package
|
(package
|
||||||
(name "s2n")
|
(name "s2n")
|
||||||
;; Update only when updating aws-crt-cpp.
|
;; Update only when updating aws-crt-cpp.
|
||||||
(version "1.3.10")
|
(version "1.5.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -1156,17 +1156,13 @@ (define-public s2n
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"15fr6zwglw74x5qd090752kqn7n3cyi4gmz94ip45g3hflschxd3"))))
|
"0cw8f846zvjgdwaqadnhdb0cxksx4jd9x4nan9x02xz2w5hcqw04"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:configure-flags
|
'(#:configure-flags
|
||||||
'("-DBUILD_SHARED_LIBS=ON"
|
'("-DBUILD_SHARED_LIBS=ON")))
|
||||||
;; Remove in next update; see https://github.com/aws/s2n-tls/pull/3108
|
|
||||||
;; Building with 'Werror' results in compilation error (even building
|
|
||||||
;; with gcc) when replacing the aws-lc input with openssl.
|
|
||||||
"-DUNSAFE_TREAT_WARNINGS_AS_ERRORS=OFF")))
|
|
||||||
(propagated-inputs (list aws-lc))
|
(propagated-inputs (list aws-lc))
|
||||||
(supported-systems '("x86_64-linux"))
|
(supported-systems '("aarch64-linux" "x86_64-linux"))
|
||||||
(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 to
|
"This library provides a C99 implementation of SSL/TLS. It is designed to
|
||||||
|
|
Loading…
Reference in a new issue