nixpkgs-overlay/pkgs/ngtcp2/default.nix

44 lines
829 B
Nix
Raw Normal View History

2021-01-16 17:03:17 +01:00
{ autoreconfHook
, stdenv
, fetchFromGitHub
, gnutls
, pkgconfig
}:
stdenv.mkDerivation rec {
pname = "ngtcp2";
2021-03-20 02:01:47 +01:00
version = "20210319";
2021-01-16 17:03:17 +01:00
src = fetchFromGitHub {
owner = "ngtcp2";
repo = "ngtcp2";
2021-03-20 02:01:47 +01:00
rev = "a4380654e03124ab04a0dd36e8519891fe54f9d5";
sha256 = "0hysrx01mqnpqvh8wnq4y54qidqsbjfjxf6lqz5143pbl88a07jq";
2021-01-16 17:03:17 +01:00
};
outputs = [ "out" "dev" ];
2021-03-15 19:47:50 +01:00
patches = [ ./gnutls_header.patch ];
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;
};
}