chore: 💚 Update Nix hashes

This commit is contained in:
Jesse Wierzbinski 2025-06-15 22:26:43 +02:00
parent fde70fa61a
commit 5cae547f8d
No known key found for this signature in database
2 changed files with 50 additions and 0 deletions

View file

@ -275,6 +275,9 @@ importers:
'@versia-server/config':
specifier: workspace:*
version: link:packages/config
'@versia-server/tests':
specifier: workspace:*
version: link:packages/tests
'@versia/client':
specifier: workspace:*
version: link:packages/client
@ -471,6 +474,9 @@ importers:
'@versia-server/config':
specifier: workspace:*
version: link:../config
'@versia-server/tests':
specifier: workspace:*
version: link:../tests
'@versia/client':
specifier: workspace:*
version: link:../client
@ -637,6 +643,24 @@ importers:
specifier: 'catalog:'
version: 3.25.64
packages/tests:
dependencies:
'@versia-server/config':
specifier: workspace:*
version: link:../config
'@versia/client':
specifier: workspace:*
version: link:../client
'@versia/kit':
specifier: workspace:*
version: link:../plugin-kit
altcha-lib:
specifier: 'catalog:'
version: 1.3.0
drizzle-orm:
specifier: 'catalog:'
version: 0.44.2(@opentelemetry/api@1.9.0)(@types/pg@8.6.1)(bun-types@1.2.16)
packages/worker:
dependencies:
'@logtape/logtape':

26
scripts/update-nix.sh Normal file
View file

@ -0,0 +1,26 @@
#!/usr/bin/env bash
set -euo pipefail
# Step 1: Run pnpm install
pnpm i --lockfile-only
# Step 2: Blank the hash in package.nix
sed -i 's/hash = ".*";/hash = lib.fakeHash;/g' nix/package.nix
echo "Running nix build to get the correct hash..."
# Step 3: Run nix build and capture stderr
build_output=$(nix build .#versia-server 2>&1 || true)
# Step 4: Extract the corrected hash from the output
corrected_hash=$(echo "$build_output" | grep 'got:' | awk '{print $2}')
echo "Corrected hash: $corrected_hash"
# Step 5: Replace the blank hash with the corrected one
sed -i "s/hash = lib.fakeHash;/hash = \"$corrected_hash\";/g" nix/package.nix
echo "Rebuilding with the corrected hash..."
# Step 6: Build again
nix build .#versia-server