Fix postgresql-musl: strip dev refs from out AND lib outputs
The real reference cycle is dev↔out (not dev↔lib as previously thought): - dev references out via .pc -L flags - out references dev via baked-in paths in binaries Building on hydra (standard Nix, ext4) confirmed: "cycle detected in references of output 'dev' from output 'out'" On darwin builders (Determinate Nix, APFS), this manifests as orphaned store paths instead of a clean error: outputs exist on disk but daemon fails to register them in the Nix DB. Fix: strip dev references from BOTH out and lib outputs in postFixup, since neither needs dev at runtime. Also remove .la files which embed dev paths.