Skip to content

Commit 9996f8a

Browse files
grovesthe-mikedavis
authored andcommitted
Only add cargo-tarpaulin on x86_64 (helix-editor#3252)
Co-authored-by: Michael Davis <[email protected]>
1 parent b2adffc commit 9996f8a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

flake.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,9 @@
8080
packages =
8181
prev.packages
8282
++ (
83-
with common.pkgs; [lld_13 lldb cargo-tarpaulin cargo-flamegraph rust-analyzer]
83+
with common.pkgs;
84+
[lld_13 lldb cargo-flamegraph rust-analyzer] ++
85+
(lib.optional (stdenv.isx86_64 && stdenv.isLinux) cargo-tarpaulin)
8486
);
8587
env =
8688
prev.env

0 commit comments

Comments
 (0)