mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 13:23:17 +00:00
Merge pull request #215017 from SuperSandro2000/curlHTTP3
nghttp3,ngtcp2: add curlHTTP3 to passthru.tests
This commit is contained in:
commit
fd58d11047
@ -1,6 +1,7 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub
|
{ lib, stdenv, fetchFromGitHub
|
||||||
, autoreconfHook, pkg-config, file
|
, autoreconfHook, pkg-config, file
|
||||||
, cunit, ncurses
|
, cunit, ncurses
|
||||||
|
, curlHTTP3
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -26,6 +27,10 @@ stdenv.mkDerivation rec {
|
|||||||
doCheck = true;
|
doCheck = true;
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
passthru.tests = {
|
||||||
|
inherit curlHTTP3;
|
||||||
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/ngtcp2/nghttp3";
|
homepage = "https://github.com/ngtcp2/nghttp3";
|
||||||
description = "nghttp3 is an implementation of HTTP/3 mapping over QUIC and QPACK in C.";
|
description = "nghttp3 is an implementation of HTTP/3 mapping over QUIC and QPACK in C.";
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
, libev, nghttp3, quictls
|
, libev, nghttp3, quictls
|
||||||
, cunit, ncurses
|
, cunit, ncurses
|
||||||
, withJemalloc ? false, jemalloc
|
, withJemalloc ? false, jemalloc
|
||||||
|
, curlHTTP3
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -29,6 +30,10 @@ stdenv.mkDerivation rec {
|
|||||||
doCheck = true;
|
doCheck = true;
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
passthru.tests = {
|
||||||
|
inherit curlHTTP3;
|
||||||
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/ngtcp2/ngtcp2";
|
homepage = "https://github.com/ngtcp2/ngtcp2";
|
||||||
description = "ngtcp2 project is an effort to implement QUIC protocol which is now being discussed in IETF QUICWG for its standardization.";
|
description = "ngtcp2 project is an effort to implement QUIC protocol which is now being discussed in IETF QUICWG for its standardization.";
|
||||||
|
Loading…
Reference in New Issue
Block a user