Search Criteria
Package Details: bun-bin 1.3.11-1
Package Actions
| Git Clone URL: | https://aur.archlinux.org/bun-bin.git (read-only, click to copy) |
|---|---|
| Package Base: | bun-bin |
| Description: | All-in-one JavaScript runtime built for speed, with bundler, transpiler, test runner, and package manager. Includes bunx, shell completions and support for baseline CPUs |
| Upstream URL: | https://github.com/oven-sh/bun |
| Licenses: | MIT |
| Conflicts: | bun |
| Provides: | bun |
| Submitter: | qingyao |
| Maintainer: | leonnelc |
| Last Packager: | leonnelc |
| Votes: | 6 |
| Popularity: | 0.71 |
| First Submitted: | 2026-03-21 14:30 (UTC) |
| Last Updated: | 2026-03-30 14:51 (UTC) |
Dependencies (0)
Required by (192)
- 1code (requires bun) (make)
- 9router-webui-bin (requires bun)
- 9router-webui-bin (requires bun) (make)
- aion-git (requires bun) (make)
- aionui (requires bun) (make)
- alicorn-git (requires bun) (make)
- archavenger-bin (requires bun)
- archavenger-git (requires bun)
- arrpc-bun (requires bun)
- athas (requires bun) (make)
- attack-shark-x11-electron (requires bun) (make)
- bananas (requires bun) (make)
- betterx-desktop-git (requires bun) (make)
- biopass (requires bun) (make)
- biopass-git (requires bun) (make)
- bluemap-telemetry (requires bun)
- bun-git (requires bun) (make)
- ccflare-git (requires bun)
- chest-backup (requires bun)
- citadel-git (requires bun) (make)
- Show 172 more...
Latest Comments
gwuensch commented on 2026-08-04 15:37 (UTC) (edited on 2026-08-05 14:30 (UTC) by gwuensch)
Yes, there is. This package uses pre-built binaries from GitHub, while the package in the official repos is built from source. Functionally, there is no difference, but they can still coexist; the same way many official packages have corresponding
-gitversions in the AUR.PS: Of course this package should still be kept up to date.
naominanoko commented on 2026-06-19 01:38 (UTC) (edited on 2026-06-19 01:39 (UTC) by naominanoko)
I don't see any point to this package anymore as it's marked out of date and we have https://archlinux.org/packages/extra/x86_64/bun
Is there any differences between this AUR package and the extra repo one?
simona commented on 2026-03-30 14:43 (UTC)
solved. tnx.
leonnelc commented on 2026-03-30 13:33 (UTC)
The latest PKGBUILD commits removed the baseline detection logic and now always downloads bun-linux-x64.zip, which requires AVX2.
This breaks CPUs without AVX2 (Illegal instruction, core dumped). The previous logic selecting bun-linux-x64-baseline.zip should be restored.
Proposed fix:
diff --git a/PKGBUILD b/PKGBUILD @@ _baseline='' if [[ $CARCH == 'x86_64' && ! grep -q avx2 /proc/cpuinfo ]]; then _baseline='-baseline' fi
source_x86_64=( "bun-x64-${pkgver}.zip::https://github.com/oven-sh/bun/releases/download/bun-v${pkgver}/bun-linux-x64${_baseline}.zip" )
qingyao commented on 2026-03-22 14:20 (UTC) (edited on 2026-03-22 14:26 (UTC) by qingyao)
@simona There's a binary file "bun" in /home/simona/.cache/yay/bun-bin, you can use this binary to debug the error and share it to me(maybe the binary is blocked???). For ease, you can create the file "bun.zsh" by hand.
simona commented on 2026-03-21 19:30 (UTC)
/home/simona/.cache/yay/bun-bin/PKGBUILD: line 27: 3235947 Illegal instruction (core dumped) SHELL=zsh "./bun" completions > "completions/bun.zsh"