Avoid shallow clone of notmuch
Shallow clones are the default in Nix 2.23, but the Git server for notmuch does not seem to allow shallow clones of specific revisions. Disable them, which should make no difference for Nix < 2.23. This is mostly to (hopefully) unblock CI. If this fixes it, I should investigate if it is possible for Nix to fall back to a full clone in this scenario.
This commit is contained in:
parent
0fb952b3ce
commit
1d61287aff
2 changed files with 8 additions and 2 deletions
|
|
@ -54,4 +54,9 @@
|
|||
# CI should fail again the next time Doom updates magit, so this won't go stale.
|
||||
git-commit = "ea0f07e54967197ac0b072a69ba314314a4080c1";
|
||||
};
|
||||
|
||||
# Repositories for which to force `shallow = false`.
|
||||
forceDeepClone = {
|
||||
"https://git.notmuchmail.org/git/notmuch" = true;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue