diff options
Diffstat (limited to 'third_party/git/default.nix')
-rw-r--r-- | third_party/git/default.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/third_party/git/default.nix b/third_party/git/default.nix new file mode 100644 index 000000000000..75131c03c2ff --- /dev/null +++ b/third_party/git/default.nix @@ -0,0 +1,9 @@ +# git with custom patches. This is also used by cgit via +# `pkgs.srcOnly`. +{ pkgs, ... }: + +pkgs.git.overrideAttrs(old: { + patches = (old.patches or []) ++ [ + ./0001-feat-third_party-git-date-add-dottime-format.patch + ]; +}) |