mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: Add ngtcp2.
* gnu/packages/networking.scm (ngtcp2): New variable. Change-Id: Id8fcedf0f2843fa37983cecb98fb76a5ccdcdc22 Signed-off-by: Jelle Licht <jlicht@fsfe.org>
This commit is contained in:
parent
1a77539987
commit
978f4a9dc4
1 changed files with 21 additions and 0 deletions
|
@ -4398,6 +4398,27 @@ (define-public nbd
|
||||||
network.")
|
network.")
|
||||||
(license license:gpl2)))
|
(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
|
(define-public yggdrasil
|
||||||
(package
|
(package
|
||||||
(name "yggdrasil")
|
(name "yggdrasil")
|
||||||
|
|
Loading…
Reference in a new issue