guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/13: gnu: gnutls: Add 3.7.7.


From: guix-commits
Subject: 02/13: gnu: gnutls: Add 3.7.7.
Date: Mon, 1 Aug 2022 08:11:19 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 5a96748a9975e5144f07ad8178097f8e6146f197
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Mon Aug 1 11:17:40 2022 +0200

    gnu: gnutls: Add 3.7.7.
    
    * gnu/packages/tls.scm (gnutls-latest): New variable.
---
 gnu/packages/tls.scm | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index 1ee5400a9c..697d9d1d36 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -329,6 +329,23 @@ required structures.")
     (properties '((ftp-server . "ftp.gnutls.org")
                   (ftp-directory . "/gcrypt/gnutls")))))
 
+(define-public gnutls-latest
+  ;; Version 3.7.7 introduces 'set-session-record-port-close!', which allows
+  ;; us to get rid of the wrapper port in 'tls-wrap'.
+  (package
+    (inherit gnutls)
+    (version "3.7.7")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://gnupg/gnutls/v"
+                                  (version-major+minor version)
+                                  "/gnutls-" version ".tar.xz"))
+              (patches (search-patches "gnutls-skip-trust-store-test.patch"
+                                       "gnutls-cross.patch"))
+              (sha256
+               (base32
+                "01i1gl15k6qwvxmxx0by1mn9nlmcmym18wdpm7dn9awfsp8474dy"))))))
+
 (define-public gnutls/guile-2.0
   ;; GnuTLS for Guile 2.0.
   (package/inherit gnutls



reply via email to

[Prev in Thread] Current Thread [Next in Thread]