1
0
Fork 0
mirror of https://github.com/helix-editor/helix synced 2024-05-09 12:16:06 +02:00

Only add cargo-tarpaulin on x86_64 (#3252)

Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
This commit is contained in:
Charlie Groves 2022-07-31 15:52:54 -04:00 committed by GitHub
parent c15b494288
commit 9f4802e101
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -80,7 +80,9 @@
packages =
prev.packages
++ (
with common.pkgs; [lld_13 lldb cargo-tarpaulin cargo-flamegraph rust-analyzer]
with common.pkgs;
[lld_13 lldb cargo-flamegraph rust-analyzer] ++
(lib.optional (stdenv.isx86_64 && stdenv.isLinux) cargo-tarpaulin)
);
env =
prev.env