10 stdenv.mkDerivation rec {
11 pname = "libnghttp2_asio";
12 version = "unstable-2022-08-11";
14 outputs = [ "out" "dev" "doc" ];
16 src = fetchFromGitHub {
18 repo = "nghttp2-asio";
19 rev = "e877868abe06a83ed0a6ac6e245c07f6f20866b5";
20 hash = "sha256-XQXRHLz0kvaIQq1nbqkJnETHR51FXMB1P9F/hQeZh6A=";
34 description = "High level HTTP/2 C++ library";
36 libnghttp2_asio is C++ library built on top of libnghttp2
37 and provides high level abstraction API to build HTTP/2
38 applications. It depends on the Boost::ASIO library and
39 OpenSSL. libnghttp2_asio provides both client and server APIs.
41 homepage = "https://github.com/nghttp2/nghttp2-asio";
42 license = with licenses; [ mit ];
43 maintainers = with maintainers; [ izorkin ];