add nghttp3
This commit is contained in:
parent
469ae448a3
commit
d52e20af49
|
@ -27,6 +27,10 @@ self: super:
|
|||
|
||||
ngtcp2-debug = super.enableDebugging self.ngtcp2;
|
||||
|
||||
nghttp3 = super.callPackage ./pkgs/nghttp3/default.nix { };
|
||||
|
||||
nghttp3-debug = super.enableDebugging self.nghttp3;
|
||||
|
||||
inherit (super.callPackages ./pkgs/nim { })
|
||||
nim-unwrapped nimble-unwrapped nim;
|
||||
|
||||
|
|
|
@ -3,6 +3,8 @@
|
|||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, gnutls-latest
|
||||
, libev
|
||||
, nghttp3
|
||||
, pkgconfig
|
||||
}:
|
||||
|
||||
|
@ -30,6 +32,8 @@ stdenv.mkDerivation rec {
|
|||
|
||||
buildInputs = [
|
||||
gnutls-latest
|
||||
libev
|
||||
nghttp3
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Reference in New Issue