about summary refs log tree commit diff
path: root/third_party/git/default.nix
blob: 75131c03c2ff79656ea6108fd54cdc81f6f9670f (plain) (blame)
1
2
3
4
5
6
7
8
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
  ];
})