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
36 lines
602 B
Nix
36 lines
602 B
Nix
{
|
|
writeShellApplication,
|
|
pnpm,
|
|
pnpmDeps,
|
|
}:
|
|
|
|
writeShellApplication {
|
|
name = "serve-pnpm-store";
|
|
|
|
runtimeInputs = [
|
|
pnpm
|
|
];
|
|
|
|
text = ''
|
|
storePath=$(mktemp -d)
|
|
|
|
clean() {
|
|
echo "Cleaning up temporary store at '$storePath'..."
|
|
|
|
rm -rf "$storePath"
|
|
}
|
|
|
|
echo "Copying pnpm store '${pnpmDeps}' to temporary store..."
|
|
|
|
cp -Tr "${pnpmDeps}" "$storePath"
|
|
chmod -R +w "$storePath"
|
|
|
|
echo "Run 'pnpm install --store-dir \"$storePath\"' to install packages from this store."
|
|
|
|
trap clean EXIT
|
|
|
|
pnpm server start \
|
|
--store-dir "$storePath"
|
|
'';
|
|
}
|