Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion packages/sqlite/build.ncl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ let version = "3.53.3" in
build_deps = [
{ file = "build.sh" } | Local,
{
url = "gs://minimal-staging-archives/sqlite-autoconf-3500400.tar.gz",
# ⚠ Nothing below derives from `version` above: the mirrored archive name
# carries the zero-padded release number (3.53.3 -> 3530300) and the
# sha256 is its own copy. A bump must change all three together — this
# line was left on 3500400 while version+sha256 moved to 3.53.3, so every
# build failed HashMismatch until the 3.53.3 archive was mirrored.
url = "gs://minimal-staging-archives/sqlite-autoconf-3530300.tar.gz",
sha256 = "c917d7db16648ec95f714974ace5e5dcf46b7dc70e26600a0a102a3141125db0"
} | Source,
base-bootstrap,
Expand Down
5 changes: 4 additions & 1 deletion packages/sqlite/build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
#!/bin/sh
set -e

tar -xof sqlite-autoconf-3500400.tar.gz
# Both names must match the archive in build.ncl. The 3.53.3 bump updated the
# `cd` but not the `tar`, so this extracted 3.50.4 and then changed into a
# directory that did not exist.
tar -xof sqlite-autoconf-3530300.tar.gz
cd sqlite-autoconf-3530300

case $(uname -m) in
Expand Down