Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
rustToolchain
cargo-nextest
wasm-tools
wabt
just
Expand Down Expand Up @@ -72,6 +73,7 @@
fi
echo "nexum dev shell — $(rustc --version)"
command -v sccache >/dev/null && echo " compiler cache: $(sccache --version)"
echo " test runner: $(cargo nextest --version | head -n1)"
${lib.optionalString stdenv.isLinux ''command -v mold >/dev/null && echo " linker (native): mold $(mold --version | head -n1 | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' | head -n1)"''}
'';
};
Expand Down
Loading