tvl-depot/third_party/git/default.nix
2020-02-21 13:54:53 +00:00

16 lines
352 B
Nix

# 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;
}