mirror of
https://github.com/ipetkov/crane.git
synced 2024-11-27 12:36:51 +03:00
0017a8da68
Even though the setup hooks can be thought of as "packages", it makes things much more simple to access everything from the same place
32 lines
1.1 KiB
Bash
32 lines
1.1 KiB
Bash
configureCargoVendoredDepsHook() {
|
|
local vendoredDir="${1:-${cargoVendorDir:?not defined}}"
|
|
local cargoConfig="${2:-${CARGO_HOME:?not defined}/config.toml}"
|
|
|
|
# NB: we add this configuration to $CARGO_HOME/config.toml
|
|
# instead of .cargo/config.toml. This allows cargo to honor the
|
|
# project's configuration (if it exists) with greater specificity
|
|
# than the config we are adding. If the project knows what it is
|
|
# doing and has its own source replacement going on, it can happily
|
|
# ignore the changes we are trying to make!
|
|
if [[ -f "${vendoredDir}/config.toml" ]]; then
|
|
echo will append ${cargoConfig} with contents of ${vendoredDir}/config.toml
|
|
cat "${vendoredDir}/config.toml" >>"${cargoConfig}"
|
|
return
|
|
fi
|
|
|
|
echo setting source replacement config in ${cargoConfig} using vendored directory ${vendoredDir}
|
|
cat >>"${cargoConfig}" <<EOF
|
|
|
|
[source.crates-io]
|
|
replace-with = "nix-sources"
|
|
[source.nix-sources]
|
|
directory = "${vendoredDir}"
|
|
EOF
|
|
}
|
|
|
|
if [ -n "${cargoVendorDir-}" ]; then
|
|
preConfigureHooks+=(configureCargoVendoredDepsHook)
|
|
else
|
|
echo "cargoVendorDir not set, will not automatically configure vendored sources"
|
|
fi
|