about summary refs log tree commit diff
path: root/third_party/git/default.nix
blob: 05766a8e6bc29ad72a06588ae08eec51fd9243ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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;
}