[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/07: gnu: Add s2n.
From: |
guix-commits |
Subject: |
04/07: gnu: Add s2n. |
Date: |
Fri, 12 Mar 2021 17:59:55 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit 1b518888638dce0c44192e8c0bbcb40752d162b4
Author: Greg Hogan <code@greghogan.com>
AuthorDate: Tue Jan 19 12:52:01 2021 +0000
gnu: Add s2n.
* gnu/packages/tls.scm (s2n): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/tls.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index a5cffeb..e0741ad 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -1135,3 +1135,30 @@ relatively simple Bash script.")
derived from Mozilla's collection.")
(home-page "https://certifi.io")
(license license:mpl2.0))))
+
+(define-public s2n
+ (package
+ (name "s2n")
+ (version "1.0.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url (string-append "https://github.com/awslabs/" name))
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1q6kmgwb8jxmc4ijzk9pkqzz8lsbfsv9hyzqvy944w7306zx1r5h"))))
+ (build-system cmake-build-system)
+ (arguments
+ '(#:tests? #f ; tests fail to build for static
library
+ #:configure-flags
+ '("-DBUILD_TESTING=OFF"
+ "-DBUILD_SHARED_LIBS=ON")))
+ (propagated-inputs
+ `(("openssl" ,openssl)
+ ("openssl:static" ,openssl "static")))
+ (synopsis "SSL/TLS implementation")
+ (description "This library provides a C99 implementation of SSL/TLS.")
+ (home-page "https://github.com/awslabs/s2n")
+ (license license:asl2.0)))
- branch master updated (bb5d84a -> bd0808f), guix-commits, 2021/03/12
- 02/07: gnu: aws-checksums: Build as shared library., guix-commits, 2021/03/12
- 03/07: gnu: Add aws-c-cal., guix-commits, 2021/03/12
- 01/07: gnu: aws-c-common: Update to 0.5.2., guix-commits, 2021/03/12
- 04/07: gnu: Add s2n.,
guix-commits <=
- 07/07: gnu: aws-sdk-cpp: Update to 1.8.159., guix-commits, 2021/03/12
- 05/07: gnu: Add aws-c-io., guix-commits, 2021/03/12
- 06/07: gnu: aws-c-event-stream: Update to 0.2.7., guix-commits, 2021/03/12