You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nix flake installed a corrupted binary. The flake's package (used by nix run and the Home Manager module) ran the prebuilt release binary through autoPatchelfHook and stdenv's default strip. The release binary is a Bun
single-file executable — the app is an appended payload Bun locates via a
baked-in byte offset — so rewriting it shifted that payload and the binary
degraded to the bare Bun CLI (canarycode just printed the Bun version). The
flake now installs the binary byte-for-byte unmodified and runs it inside an
FHS env on Linux. The install.sh and GitHub-release binaries were never
affected — only the Nix install path was. The release workflow also now pins
Bun for reproducible builds. No source changes.