ngtcp2-gnutls.tests: add curlWithGnuTls

It's another consumer of this library and now used in a dozen packages.
This commit is contained in:
Vladimír Čunát
2025-10-23 15:05:29 +02:00
parent 988ff8bbfb
commit af24062351
+4 -1
View File
@@ -8,6 +8,7 @@
cunit,
ncurses,
knot-dns,
curlWithGnuTls,
}:
stdenv.mkDerivation rec {
@@ -38,7 +39,9 @@ stdenv.mkDerivation rec {
doCheck = true;
nativeCheckInputs = [ cunit ] ++ lib.optional stdenv.hostPlatform.isDarwin ncurses;
passthru.tests = knot-dns.passthru.tests; # the only consumer so far
passthru.tests = knot-dns.passthru.tests // {
inherit curlWithGnuTls;
};
meta = with lib; {
homepage = "https://github.com/ngtcp2/ngtcp2";