diff options
| author | Kj Tsanaktsidis <kjtsanaktsidis@groq.com> | 2026-01-08 22:32:05 +1100 |
|---|---|---|
| committer | Kj Tsanaktsidis <kjtsanaktsidis@groq.com> | 2026-01-08 22:32:05 +1100 |
| commit | 5a7b30f6a325d21ab68044ff64a880273aff5da5 (patch) | |
| tree | fd8e036b68c331d236ab585a5e51560c1c88f2d4 /overlays/git-fix/default.nix | |
| parent | f676608781d9464bce06554a87cf7cfce617b737 (diff) | |
git patch
Diffstat (limited to 'overlays/git-fix/default.nix')
| -rw-r--r-- | overlays/git-fix/default.nix | 7 |
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 + ]; + }); +} |
