about summary refs log blame commit diff
path: root/third_party/git/default.nix
blob: 10e47fea26f85ffdb5f639d04f1708ba8b2324e8 (plain) (tree)
1
2
3
4
5

                                                                      
               
 
                       










                                 
# Use the upstream git derivation (there's a lot of stuff happening in
# there!) and just override the source:
{ depot, ... }:

with depot.third_party;

(originals.git.overrideAttrs(_: {
  version = "2.23.0";
  src = ./.;
  doInstallCheck = false;
  preConfigure = ''
    ${autoconf}/bin/autoreconf -i
  '';
})).override {
  sendEmailSupport = true;
}