fix(nix): regenerate bun.nix from bun.lock (#350)

bun.nix (last regenerated in #298) drifted from bun.lock after the dependency updates in #348, leaving the Nix flake build broken: 254 packages missing and 195 stale entries. Regenerated with bun2nix; all 929 entries now match bun.lock exactly.

Also adds a CI step that detects drift after the regenerate step (made blocking in a follow-up commit).

Thanks @Cyberboss.
This commit is contained in:
Jordan Dominion
2026-08-01 00:37:51 -04:00
committed by GitHub
parent e40eaabf4c
commit c7932faecb
2 changed files with 867 additions and 625 deletions
+6
View File
@@ -55,3 +55,9 @@ jobs:
- name: Build package
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')
run: nix build --print-build-logs --accept-flake-config
- name: Check for diffs
run: |
if ! git diff --quiet; then
echo "`bun.nix` is out of date! Run `nix run github:nix-community/bun2nix -- -o bun.nix` on a NixOS system to regenerate it!"
fi
+861 -625
View File
File diff suppressed because it is too large Load Diff