An easy-to-host PDS on the ATProtocol, iPhone and MacOS. Maintain control of your keys and data, always.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs(MM-143): document buildDepsOnly scoping constraint in root CLAUDE.md

The flake.nix buildDepsOnly call is scoped to relay-related crates to
avoid compiling Tauri's native dependencies in Nix. This boundary is
important for future workspace additions and belongs in CLAUDE.md.

authored by

Malpercio and committed by
Tangled
28aa2ac2 2c2a3154

+1
+1
CLAUDE.md
··· 61 61 ## Boundaries 62 62 - Never edit: `flake.lock` by hand (managed by `nix flake update`) 63 63 - Never edit: `devenv.local.nix` is gitignored for local overrides only 64 + - `flake.nix` `buildDepsOnly` is scoped to relay-related crates (`relay`, `repo-engine`, `crypto`, `common`). Adding a workspace crate with native dependencies not in `commonArgs.buildInputs` (e.g. Tauri's webkit2gtk/Apple frameworks) requires either adding the crate to the scope list or adding its build inputs to `commonArgs`.