flake: Fix devShell on aarch64-darwin (#3810)
LLDB is marked broken on all arches except for x86_64-linux. With this change, I can use `nix develop` on aarch64-darwin.
This commit is contained in:
parent
d38950bdf9
commit
ec81ec1e8d
1 changed files with 2 additions and 1 deletions
|
@ -92,8 +92,9 @@
|
|||
prev.packages
|
||||
++ (
|
||||
with common.pkgs;
|
||||
[lld_13 lldb cargo-flamegraph rust-analyzer]
|
||||
[lld_13 cargo-flamegraph rust-analyzer]
|
||||
++ (lib.optional (stdenv.isx86_64 && stdenv.isLinux) cargo-tarpaulin)
|
||||
++ (lib.optional stdenv.isLinux lldb)
|
||||
);
|
||||
env =
|
||||
prev.env
|
||||
|
|
Loading…
Reference in a new issue