summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--shells/perf/shell.nix3
-rw-r--r--shells/rust/shell.nix2
2 files changed, 2 insertions, 3 deletions
diff --git a/shells/perf/shell.nix b/shells/perf/shell.nix
index 4bfaeaf..c77f8e7 100644
--- a/shells/perf/shell.nix
+++ b/shells/perf/shell.nix
@@ -11,12 +11,13 @@
{
mkShell,
hyperfine,
+ cargo-flamegraph,
}:
mkShell {
__structuredAttrs = true;
packages = [
- # Perf
hyperfine
+ cargo-flamegraph
];
}
diff --git a/shells/rust/shell.nix b/shells/rust/shell.nix
index e2f748d..4d86381 100644
--- a/shells/rust/shell.nix
+++ b/shells/rust/shell.nix
@@ -17,7 +17,6 @@
mold,
cargo-edit,
cargo-expand,
- cargo-flamegraph,
}:
mkShell {
__structuredAttrs = true;
@@ -32,6 +31,5 @@ mkShell {
cargo-edit
cargo-expand
- cargo-flamegraph
];
}