Search Criteria
Package Details: zeroclaw 0.1.8-1
Package Actions
| Git Clone URL: | https://aur.archlinux.org/zeroclaw.git (read-only, click to copy) |
|---|---|
| Package Base: | zeroclaw |
| Description: | Zero overhead, fully autonomous AI assistant runtime (100% Rust) |
| Upstream URL: | https://github.com/zeroclaw-labs/zeroclaw |
| Licenses: | MIT, Apache-2.0 |
| Submitter: | SteamedFish |
| Maintainer: | SteamedFish |
| Last Packager: | SteamedFish |
| Votes: | 1 |
| Popularity: | 0.92 |
| First Submitted: | 2026-03-03 15:01 (UTC) |
| Last Updated: | 2026-03-09 10:24 (UTC) |
Dependencies (8)
- gcc-libs (gcc-libs-gitAUR, gccrs-libs-gitAUR, gcc-libs-snapshotAUR)
- glibc (glibc-gitAUR, glibc-eacAUR, glibc-git-native-pgoAUR)
- cargo (rust-beta-binAUR, rustup-gitAUR, rust-gitAUR, rust, rustup) (make)
- clang (llvm-gitAUR, clang-minimal-gitAUR, clang17-binAUR) (make)
- rust (rust-beta-binAUR, rustup-gitAUR, rust-gitAUR, rustup) (make)
- bubblewrap (bubblewrap-gitAUR, bubblewrap-gitAUR, bubblewrap-suid) (optional) – sandbox-bubblewrap isolation support
- chromium (chromium-no-extrasAUR, chromium-clang-avx2-binAUR, helium-browserAUR, ungoogled-chromium-binAUR, ungoogled-chromium-widevine-binAUR, omarchy-chromium-binAUR, ungoogled-chromium-xdgAUR, ungoogled-chromiumAUR) (optional) – browser-native feature
- postgresql (postgresql-12AUR, postgresql13AUR, postgresql18-docsAUR, postgresql18AUR, postgresql17-docsAUR, postgresql17AUR, postgresql16-docsAUR, postgresql16AUR, postgresql15-docsAUR, postgresql15AUR, postgresql-gitAUR) (optional) – memory-postgres backend
Latest Comments
SteamedFish commented on 2026-03-09 10:27 (UTC)
@taotieren
Thanks for the suggestion! You're absolutely right—I had applied this in my previous PKGBUILDs but overlooked it this time. My oversight. Regarding the target triples: using "$CARCH-unknown-linux-gnu" is actually insufficient for Arch's architecture naming conventions. Specifically:
I've corrected this by using cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')" to ensure the correct target triple is always fetched regardless of architecture. Fixed now.
taotieren commented on 2026-03-09 09:57 (UTC)
Thank you. There is also a suggestion to configure the following in prepare. You can only download packages related to the current architecture and reduce the download of packages for other architectures.
SteamedFish commented on 2026-03-09 09:49 (UTC)
@taotieren
This is caused by a rustc 1.94.0 regression — the new compiler increases query depth for async fn layout analysis, which overflows matrix-sdk v0.16.0's default recursion limit of 128. Users on rustc 1.93.1 are unaffected.
The AUR PKGBUILD has been patched (commit 063fd63) — updating your package with
paru -Syu zeroclaworyay -Syu zeroclawwill pick up the fix. The patch applies#![recursion_limit = "256"]to matrix-sdk's crate root duringprepare(), exactly as the compiler suggests.The bug has been reported upstream:
The PKGBUILD workaround will be removed once a new matrix-sdk release ships the proper fix.
taotieren commented on 2026-03-09 05:39 (UTC)
Hello. There are the following errors in my extra environment compilation under devtools. Can you help repair it? Thank you.