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 2a168c4 commit 173afa2Copy full SHA for 173afa2
tools/nix/sharedLibDeps.nix
@@ -17,16 +17,16 @@
17
zstd
18
;
19
http-parser = pkgs.llhttp;
20
- nghttp2 = pkgs.nghttp2.overrideAttrs {
21
- patches = [
+ nghttp2 = pkgs.nghttp2.overrideAttrs (old: {
+ patches = old.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