Search Criteria
Package Details: zeroclaw 0.6.9-1
Package Actions
| Git Clone URL: | https://aur.archlinux.org/zeroclaw.git (read-only, click to copy) |
|---|---|
| Package Base: | zeroclaw |
| Description: | Fast, small, and fully autonomous AI assistant infrastructure — deploy anywhere, swap anything (Rust) |
| Upstream URL: | https://github.com/zeroclaw-labs/zeroclaw |
| Licenses: | MIT, Apache-2.0 |
| Submitter: | SteamedFish |
| Maintainer: | zeroclaw-bot |
| Last Packager: | SteamedFish |
| Votes: | 4 |
| Popularity: | 1.00 |
| First Submitted: | 2026-03-03 15:01 (UTC) |
| Last Updated: | 2026-04-10 10:40 (UTC) |
Dependencies (9)
- alsa-lib
- 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-ignoresigsAUR, bubblewrap-suid) (optional) – sandbox-bubblewrap isolation support
- chromium (chromium-clang-avx2-binAUR, helium-browserAUR, omarchy-chromium-binAUR, ungoogled-chromium-widevine-binAUR, ungoogled-chromiumAUR, ungoogled-chromium-xdgAUR, ungoogled-chromium-binAUR) (optional) – browser-native feature
- postgresql (postgresql-12AUR, postgresql13AUR, postgresql-gitAUR, postgresql15-docsAUR, postgresql15AUR, postgresql16-docsAUR, postgresql16AUR, postgresql17-docsAUR, postgresql17AUR, postgresql18-docsAUR, postgresql18AUR) (optional) – memory-postgres backend
Latest Comments
TTimo commented on 2026-04-12 14:12 (UTC) (edited on 2026-04-18 15:27 (UTC) by TTimo)
One of the crates fails to build, failing the overall build:
Can use the following patch to fix the build:
Or maybe just disable
voice-wake.Reported upstream https://github.com/zeroclaw-labs/zeroclaw/issues/5861 - latest master branch builds fine, so that's another option.
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.