diff options
Diffstat (limited to 'third_party/git')
-rw-r--r-- | third_party/git/default.nix | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/third_party/git/default.nix b/third_party/git/default.nix index 26ea911a597a..05766a8e6bc2 100644 --- a/third_party/git/default.nix +++ b/third_party/git/default.nix @@ -1,15 +1,13 @@ # Use the upstream git derivation (there's a lot of stuff happening in # there!) and just override the source: -{ depot, ... }: +{ pkgs, ... }: -with depot.third_party; - -(originals.git.overrideAttrs(_: { +(pkgs.git.overrideAttrs(_: { version = "2.29.2"; src = ./.; doInstallCheck = false; preConfigure = '' - ${autoconf}/bin/autoreconf -i + ${pkgs.autoconf}/bin/autoreconf -i ''; })).override { sendEmailSupport = true; |