aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--flake.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 63501f9c..7b6f0685 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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