2021-01-16 17:03:17 +01:00
|
|
|
{ autoreconfHook
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, gnutls
|
|
|
|
, pkgconfig
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "ngtcp2";
|
2021-07-16 00:55:37 +02:00
|
|
|
version = "20210714";
|
2021-01-16 17:03:17 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ngtcp2";
|
|
|
|
repo = "ngtcp2";
|
2021-07-16 00:55:37 +02:00
|
|
|
rev = "7afbcff4b19b9d94ce49dfb7f9e092f7bef35f63";
|
|
|
|
sha256 = "16ir8xrcszjm8822m4grb598nykj21pi31nj9yyqz72pyryl3m4z";
|
2021-01-16 17:03:17 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2021-03-15 19:47:50 +01:00
|
|
|
patches = [ ./gnutls_header.patch ];
|
|
|
|
|
2021-01-17 13:38:52 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--with-gnutls"
|
|
|
|
];
|
|
|
|
|
2021-01-16 17:03:17 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
pkgconfig
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gnutls
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "ngtcp2 project is an effort to implement IETF QUIC protocol";
|
|
|
|
homepage = https://github.com/ngtcp2/ngtcp2;
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ royneary ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|