guix-patches
[Top][All Lists]
Advanced

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

[bug#67054] [PATCH] gnu: Add ngtcp2


From: mason1920
Subject: [bug#67054] [PATCH] gnu: Add ngtcp2
Date: Fri, 10 Nov 2023 14:47:50 -0500

* gnu/packages/networking.scm (ngtcp2): New variable.

Change-Id: Id8fcedf0f2843fa37983cecb98fb76a5ccdcdc22
---
 gnu/packages/networking.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 1a8912ac87..fc4e29a471 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -169,6 +169,26 @@ (define-module (gnu packages networking)
   #:use-module (gnu packages xml)
   #:use-module (ice-9 match))
 
+(define-public ngtcp2
+  (package
+    (name "ngtcp2")
+    (version "1.0.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/ngtcp2/ngtcp2";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1rq8k38lk45g1h2vprvxg403795vaxmf9m12wnndg1dc76xcrjk7"))))
+    (build-system gnu-build-system)
+    (native-inputs (list autoconf automake libtool pkg-config))
+    (home-page "https://nghttp2.org/ngtcp2/";)
+    (synopsis "QUIC protocol implementation")
+    (description "QUIC protocol implementation.")
+    (license license:expat)))
+
 (define-public usrsctp
   (package
     (name "usrsctp")

base-commit: bb3ab24a296ffa5273b2e82a02ed057e90c095f3
-- 
2.41.0






reply via email to

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