nix: Fix dev shell on Darwin (#58032)

Self-Review Checklist:

- [x] I've reviewed my own diff for quality, security, and reliability
- [ ] Unsafe blocks (if any) have justifying comments
- [ ] The content is consistent with the [UI/UX
checklist](https://github.com/zed-industries/zed/blob/main/CONTRIBUTING.md#uiux-checklist)
- [ ] Tests cover the new/changed behavior
- [ ] Performance impact has been considered and is acceptable

Release Notes:

- N/A
This commit is contained in:
Jakub Konka 2026-05-29 10:10:32 +02:00 committed by GitHub
parent 3d9852ae04
commit a3669a29e6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -37,7 +37,9 @@
name = "zed-editor-dev";
inputsFrom = [ zed-editor ];
packages = with pkgs; [
packages =
with pkgs;
[
wrappedCargo # must be first, to shadow the `cargo` provided by `rustToolchain`
rustToolchain # cargo, rustc, and rust-toolchain.toml components included
cargo-nextest
@ -59,8 +61,8 @@
ps.pyatspi
ps.pygobject3
]))
accerciser
];
]
++ lib.optionals stdenv.hostPlatform.isLinux [ accerciser ];
env =
(removeAttrs baseEnv [