Set cargoLock.allowBuiltinFetchGit in Nix package

This commit is contained in:
Michael Davis 2025-03-04 11:47:14 -05:00
parent 28e69f09fc
commit 486f4297b7
No known key found for this signature in database

View file

@ -38,7 +38,13 @@ in
# hooked up. To get around this while having good customization, mkDerivation is
# used instead.
rustPlatform.buildRustPackage (self: {
cargoLock.lockFile = ./Cargo.lock;
cargoLock = {
lockFile = ./Cargo.lock;
# This is not allowed in nixpkgs but is very convenient here: it allows us to
# avoid specifying `outputHashes` here for any git dependencies we might take
# on temporarily.
allowBuiltinFetchGit = true;
};
nativeBuildInputs = [
installShellFiles