Skip to content

Commit b4c42b2

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 b4c42b2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

flake.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,9 @@
9292
prev.packages
9393
++ (
9494
with common.pkgs;
95-
[lld_13 lldb cargo-flamegraph rust-analyzer]
95+
[lld_13 cargo-flamegraph rust-analyzer]
9696
++ (lib.optional (stdenv.isx86_64 && stdenv.isLinux) cargo-tarpaulin)
97+
++ (lib.optional stdenv.isLinux lldb)
9798
);
9899
env =
99100
prev.env

0 commit comments

Comments
 (0)