1
0
Fork 0
mirror of https://github.com/helix-editor/helix synced 2024-05-10 00:26:04 +02:00

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:
Michael Davis 2022-09-13 08:50:53 -05:00 committed by GitHub
parent d38950bdf9
commit ec81ec1e8d
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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