all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#67054] [PATCH] gnu: Add ngtcp2
@ 2023-11-10 19:47 mason1920 via Guix-patches via
  2023-11-12 16:14 ` bug#67054: " Jelle Licht
  0 siblings, 1 reply; 2+ messages in thread
From: mason1920 via Guix-patches via @ 2023-11-10 19:47 UTC (permalink / raw)
  To: 67054; +Cc: mason1920

* 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





^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#67054: [PATCH] gnu: Add ngtcp2
  2023-11-10 19:47 [bug#67054] [PATCH] gnu: Add ngtcp2 mason1920 via Guix-patches via
@ 2023-11-12 16:14 ` Jelle Licht
  0 siblings, 0 replies; 2+ messages in thread
From: Jelle Licht @ 2023-11-12 16:14 UTC (permalink / raw)
  To: 67054-done; +Cc: mason1920

mason1920 via Guix-patches via <guix-patches@gnu.org> writes:

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

Pushed to master /w 978f4a9dc4, including the following changes:
- use the release tarball, remove autotools from native-inputs
- remove (currently) unused pkg-config native-input
- added a cunit native-input so tests are run
- tweaked the package description

Thanks!
- Jelle





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-11-12 16:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-10 19:47 [bug#67054] [PATCH] gnu: Add ngtcp2 mason1920 via Guix-patches via
2023-11-12 16:14 ` bug#67054: " Jelle Licht

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.