We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c05fc4 commit 2a168c4Copy full SHA for 2a168c4
tools/nix/sharedLibDeps.nix
@@ -7,7 +7,6 @@
7
brotli
8
c-ares
9
libuv
10
- nghttp2
11
nghttp3
12
ngtcp2
13
simdjson
@@ -18,6 +17,16 @@
18
17
zstd
19
;
20
http-parser = pkgs.llhttp;
+ nghttp2 = pkgs.nghttp2.overrideAttrs {
21
+ patches = [
22
+ (pkgs.fetchpatch2 {
23
+ url = "https://github.com/nghttp2/nghttp2/commit/7784fa979d0bcf801a35f1afbb25fb048d815cd7.patch?full_index=1";
24
+ revert = true;
25
+ excludes = [ "lib/includes/nghttp2/nghttp2.h" ];
26
+ hash = "sha256-RG87Qifjpl7HTP9ac2JwHj2XAbDlFgOpAnpZX3ET6gU=";
27
+ })
28
+ ];
29
+ };
30
openssl = pkgs.openssl.overrideAttrs (old: {
31
version = "3.5.4";
32
src = pkgs.fetchurl {
0 commit comments