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/.skip-subtree1
-rw-r--r--third_party/git/default.nix16
2 files changed, 17 insertions, 0 deletions
diff --git a/third_party/git/.skip-subtree b/third_party/git/.skip-subtree
new file mode 100644
index 0000000000..2f5f854d72
--- /dev/null
+++ b/third_party/git/.skip-subtree
@@ -0,0 +1 @@
+Subtrees of this directory belong to git (third-party).
diff --git a/third_party/git/default.nix b/third_party/git/default.nix
new file mode 100644
index 0000000000..fd847274e1
--- /dev/null
+++ b/third_party/git/default.nix
@@ -0,0 +1,16 @@
+# Use the upstream git derivation (there's a lot of stuff happening in
+# there!) and just override the source:
+{ pkgs, ... }:
+
+with pkgs.third_party;
+
+(originals.git.overrideAttrs(_: {
+  version = "2.23.0";
+  src = ./.;
+  doInstallCheck = false;
+  preConfigure = ''
+    ${autoconf}/bin/autoreconf -i
+  '';
+})).override {
+  sendEmailSupport = true;
+}