Unnamed repository; edit this file 'description' to name the repository.
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.
| -rw-r--r-- | flake.nix | 3 |
1 files changed, 2 insertions, 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 |