about summary refs log tree commit diff
path: root/third_party/git/default.nix
blob: eed07b5616c66dfb48f95cc3ac7595adcb5832fb (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
  ];
})