guix-commits
[Top][All Lists]
Advanced

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

04/07: gnu: ngtcp2: Build libngtcp2_crypto_gnutls.


From: guix-commits
Subject: 04/07: gnu: ngtcp2: Build libngtcp2_crypto_gnutls.
Date: Wed, 17 Jan 2024 12:31:22 -0500 (EST)

mothacehe pushed a commit to branch master
in repository guix.

commit aa74e0bf17c052149baa6e030ed895239573ffd1
Author: Tomas Volf <~@wolfsden.cz>
AuthorDate: Mon Jan 8 20:38:16 2024 +0100

    gnu: ngtcp2: Build libngtcp2_crypto_gnutls.
    
    * gnu/packages/networking.scm (ngtcp2)[arguments]<#:configure-flags>: Add
    --with-gnutls.
    [native-inputs]: Add pkg-config.
    [inputs]: Add gnutls.
    
    Change-Id: Id3a9210992d203a57a9b791f3c3752f2ebd3e634
    Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
---
 gnu/packages/networking.scm | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 06d04e4b44..64e32f78f2 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -61,6 +61,7 @@
 ;;; Copyright © 2023 Yovan Naumovski <yovan@gorski.stream>
 ;;; Copyright © 2023 Zheng Junjie <873216071@qq.com>
 ;;; Copyright © 2023 Artyom V. Poptsov <poptsov.artyom@gmail.com>
+;;; Copyright © 2024 Tomas Volf <~@wolfsden.cz>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -4520,7 +4521,13 @@ network.")
        (sha256
         (base32 "1pppl6s25hz91w6321g1q7dqvfy4vccz9mmc5r8sfdvdc95fngl0"))))
     (build-system gnu-build-system)
-    (native-inputs (list cunit))
+    (arguments
+     (list
+      #:configure-flags
+      ;; openssl package does not support QUIC interface, so just gnutls
+      #~(list "--with-gnutls")))
+    (native-inputs (list cunit pkg-config))
+    (inputs (list gnutls))
     (home-page "https://nghttp2.org/ngtcp2/";)
     (synopsis "QUIC protocol implementation")
     (description



reply via email to

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