We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 927bee3 commit f7b37bfCopy full SHA for f7b37bf
pkgs/tools/package-management/nix/dependencies.nix
@@ -34,5 +34,12 @@ regular@{
34
# only a stripped down version is built which takes a lot less resources to build
35
requiredSystemFeatures = [ ];
36
};
37
+
38
+ libgit2 = pkgs.libgit2.overrideAttrs (old: {
39
+ # Drop the SSH buffer overflow patch to avoid rebuilding Nix
40
+ patches = lib.filter (p: !lib.hasSuffix "fix-ssh-custom-heap-buffer-overflow.patch" (toString p)) (
41
+ old.patches or [ ]
42
+ );
43
+ });
44
45
}
0 commit comments