about summary refs log tree commit diff
path: root/third_party/git
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git')
-rw-r--r--third_party/git/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/third_party/git/default.nix b/third_party/git/default.nix
index 26ea911a59..05766a8e6b 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;