Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
# Use the upstream git derivation (there's a lot of stuff happening in
# there!) and just override the source:
{ pkgs, ... }:
(pkgs.git.overrideAttrs(_: {
version = "2.29.2";
src = ./.;
doInstallCheck = false;
preConfigure = ''
${pkgs.autoconf}/bin/autoreconf -i
'';
})).override {
sendEmailSupport = true;
}