Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
91 lines
2.3 KiB
Bash
91 lines
2.3 KiB
Bash
# shellcheck shell=bash
|
|
|
|
pnpmConfigHook() {
|
|
echo "Executing pnpmConfigHook"
|
|
|
|
if [ -n "${pnpmRoot-}" ]; then
|
|
pushd "$pnpmRoot"
|
|
fi
|
|
|
|
if [ -z "${pnpmDeps-}" ]; then
|
|
echo "Error: 'pnpmDeps' must be set when using pnpmConfigHook."
|
|
exit 1
|
|
fi
|
|
|
|
fetcherVersion=1
|
|
if [[ -e "${pnpmDeps}/.fetcher-version" ]]; then
|
|
fetcherVersion=$(cat "${pnpmDeps}/.fetcher-version")
|
|
fi
|
|
|
|
echo "Using fetcherVersion: $fetcherVersion"
|
|
|
|
echo "Configuring pnpm store"
|
|
|
|
export HOME=$(mktemp -d)
|
|
export STORE_PATH=$(mktemp -d)
|
|
export npm_config_arch="@npmArch@"
|
|
export npm_config_platform="@npmPlatform@"
|
|
|
|
cp -Tr "$pnpmDeps" "$STORE_PATH"
|
|
chmod -R +w "$STORE_PATH"
|
|
|
|
|
|
# If the packageManager field in package.json is set to a different pnpm version than what is in nixpkgs,
|
|
# any pnpm command would fail in that directory, the following disables this
|
|
pushd ..
|
|
pnpm config set manage-package-manager-versions false
|
|
popd
|
|
|
|
pnpm config set store-dir "$STORE_PATH"
|
|
|
|
# Prevent hard linking on file systems without clone support.
|
|
# See: https://pnpm.io/settings#packageimportmethod
|
|
pnpm config set package-import-method clone-or-copy
|
|
|
|
if [[ -n "$pnpmWorkspace" ]]; then
|
|
echo "'pnpmWorkspace' is deprecated, please migrate to 'pnpmWorkspaces'."
|
|
exit 2
|
|
fi
|
|
|
|
echo "Installing dependencies"
|
|
if [[ -n "$pnpmWorkspaces" ]]; then
|
|
local IFS=" "
|
|
for ws in $pnpmWorkspaces; do
|
|
pnpmInstallFlags+=("--filter=$ws")
|
|
done
|
|
fi
|
|
|
|
runHook prePnpmInstall
|
|
|
|
if ! pnpm install \
|
|
--offline \
|
|
--ignore-scripts \
|
|
"${pnpmInstallFlags[@]}" \
|
|
--frozen-lockfile
|
|
then
|
|
echo
|
|
echo "ERROR: pnpm failed to install dependencies"
|
|
echo
|
|
echo "If you see ERR_PNPM_NO_OFFLINE_TARBALL above this, follow these to fix the issue:"
|
|
echo '1. Set pnpmDeps.hash to "" (empty string)'
|
|
echo "2. Build the derivation and wait for it to fail with a hash mismatch"
|
|
echo "3. Copy the 'got: sha256-' value back into the pnpmDeps.hash field"
|
|
echo
|
|
|
|
exit 1
|
|
fi
|
|
|
|
|
|
echo "Patching scripts"
|
|
|
|
patchShebangs node_modules/{*,.*}
|
|
|
|
if [ -n "${pnpmRoot-}" ]; then
|
|
popd
|
|
fi
|
|
|
|
echo "Finished pnpmConfigHook"
|
|
}
|
|
|
|
postConfigureHooks+=(pnpmConfigHook)
|