guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add ngtcp2.


From: guix-commits
Subject: branch master updated: gnu: Add ngtcp2.
Date: Sun, 12 Nov 2023 11:12:08 -0500

This is an automated email from the git hooks/post-receive script.

jlicht pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 978f4a9dc4 gnu: Add ngtcp2.
978f4a9dc4 is described below

commit 978f4a9dc4c09d12383561d7ae7ab3441c744ebd
Author: mason1920 <mason1920@use.startmail.com>
AuthorDate: Fri Nov 10 14:47:50 2023 -0500

    gnu: Add ngtcp2.
    
    * gnu/packages/networking.scm (ngtcp2): New variable.
    
    Change-Id: Id8fcedf0f2843fa37983cecb98fb76a5ccdcdc22
    Signed-off-by: Jelle Licht <jlicht@fsfe.org>
---
 gnu/packages/networking.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 1a8912ac87..2028830087 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -4398,6 +4398,27 @@ client and server.  It allows you to use remote block 
devices over a TCP/IP
 network.")
     (license license:gpl2)))
 
+(define-public ngtcp2
+  (package
+    (name "ngtcp2")
+    (version "1.0.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/ngtcp2/ngtcp2/";
+                           "releases/download/v" version "/"
+                           "ngtcp2-" version ".tar.xz"))
+       (sha256
+        (base32 "0l84hnj9n4bfxjizgmqsqbz71jx7m00a7l1z43fg5ls3apx9ij11"))))
+    (build-system gnu-build-system)
+    (native-inputs (list cunit))
+    (home-page "https://nghttp2.org/ngtcp2/";)
+    (synopsis "QUIC protocol implementation")
+    (description
+     "The ngtcp2 project is an effort to implement the RFC9000 (IETF)
+QUIC protocol.")
+    (license license:expat)))
+
 (define-public yggdrasil
   (package
     (name "yggdrasil")



reply via email to

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