summaryrefslogtreecommitdiff
path: root/overlays/git-fix/default.nix
diff options
context:
space:
mode:
authorKj Tsanaktsidis <kjtsanaktsidis@groq.com>2026-01-08 22:32:05 +1100
committerKj Tsanaktsidis <kjtsanaktsidis@groq.com>2026-01-08 22:32:05 +1100
commit5a7b30f6a325d21ab68044ff64a880273aff5da5 (patch)
treefd8e036b68c331d236ab585a5e51560c1c88f2d4 /overlays/git-fix/default.nix
parentf676608781d9464bce06554a87cf7cfce617b737 (diff)
git patch
Diffstat (limited to 'overlays/git-fix/default.nix')
-rw-r--r--overlays/git-fix/default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/overlays/git-fix/default.nix b/overlays/git-fix/default.nix
new file mode 100644
index 0000000..808c55e
--- /dev/null
+++ b/overlays/git-fix/default.nix
@@ -0,0 +1,7 @@
+final: prev: {
+ git = prev.git.overrideAttrs (old: {
+ patches = (old.patches or []) ++ [
+ ./0001-http-backend-write-newlines-to-stderr-when-respondin.patch
+ ];
+ });
+}