Skip to content

v0.1.1

Choose a tag to compare

@github-actions github-actions released this 23 Jun 10:26
· 23 commits to main since this release

Fixed

  • 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.