Skip to content

Commit

Permalink
flake: Fix devShell on aarch64-darwin
Browse files Browse the repository at this point in the history
LLDB is marked broken on all arches except for x86_64-linux. With this
change, I can use `nix develop` on aarch64-darwin.
  • Loading branch information
the-mikedavis committed Sep 12, 2022
1 parent 0361217 commit fe00e4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@
prev.packages
++ (
with common.pkgs;
[lld_13 lldb cargo-flamegraph rust-analyzer]
++ (lib.optional (stdenv.isx86_64 && stdenv.isLinux) cargo-tarpaulin)
[lld_13 cargo-flamegraph rust-analyzer]
++ (lib.optionals (stdenv.isx86_64 && stdenv.isLinux) [cargo-tarpaulin lldb])
);
env =
prev.env
Expand Down

0 comments on commit fe00e4e

Please sign in to comment.