Skip to content

Commit fe00e4e

Browse files
committed
flake: Fix devShell on aarch64-darwin
LLDB is marked broken on all arches except for x86_64-linux. With this change, I can use `nix develop` on aarch64-darwin.
1 parent 0361217 commit fe00e4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@
9292
prev.packages
9393
++ (
9494
with common.pkgs;
95-
[lld_13 lldb cargo-flamegraph rust-analyzer]
96-
++ (lib.optional (stdenv.isx86_64 && stdenv.isLinux) cargo-tarpaulin)
95+
[lld_13 cargo-flamegraph rust-analyzer]
96+
++ (lib.optionals (stdenv.isx86_64 && stdenv.isLinux) [cargo-tarpaulin lldb])
9797
);
9898
env =
9999
prev.env

0 commit comments

Comments
 (0)