From a791d4059cd428134c3859f6825c1781bbb85182 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Fri, 23 Sep 2022 14:23:25 +0200 Subject: [PATCH] ngtcp2-gnutls: add passthru.tests --- pkgs/development/libraries/ngtcp2/gnutls.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/ngtcp2/gnutls.nix b/pkgs/development/libraries/ngtcp2/gnutls.nix index b8b0e03308ae..ed0e3c9dfa12 100644 --- a/pkgs/development/libraries/ngtcp2/gnutls.nix +++ b/pkgs/development/libraries/ngtcp2/gnutls.nix @@ -1,7 +1,7 @@ { lib, stdenv, fetchFromGitHub , autoreconfHook, pkg-config , gnutls -, cunit, ncurses +, cunit, ncurses, knot-dns }: stdenv.mkDerivation rec { @@ -27,6 +27,8 @@ stdenv.mkDerivation rec { checkInputs = [ cunit ] ++ lib.optional stdenv.isDarwin ncurses; + passthru.tests = knot-dns.passthru.tests; # the only consumer so far + meta = with lib; { homepage = "https://github.com/ngtcp2/ngtcp2"; description = "an effort to implement RFC9000 QUIC protocol.";