add nghttp3

master
Christian Ulrich 2021-08-22 15:32:21 +02:00
parent 469ae448a3
commit d52e20af49
No known key found for this signature in database
GPG Key ID: 8241BE099775A097
2 changed files with 8 additions and 0 deletions

View File

@ -27,6 +27,10 @@ self: super:
ngtcp2-debug = super.enableDebugging self.ngtcp2; ngtcp2-debug = super.enableDebugging self.ngtcp2;
nghttp3 = super.callPackage ./pkgs/nghttp3/default.nix { };
nghttp3-debug = super.enableDebugging self.nghttp3;
inherit (super.callPackages ./pkgs/nim { }) inherit (super.callPackages ./pkgs/nim { })
nim-unwrapped nimble-unwrapped nim; nim-unwrapped nimble-unwrapped nim;

View File

@ -3,6 +3,8 @@
, stdenv , stdenv
, fetchFromGitHub , fetchFromGitHub
, gnutls-latest , gnutls-latest
, libev
, nghttp3
, pkgconfig , pkgconfig
}: }:
@ -30,6 +32,8 @@ stdenv.mkDerivation rec {
buildInputs = [ buildInputs = [
gnutls-latest gnutls-latest
libev
nghttp3
]; ];
meta = with lib; { meta = with lib; {