From d744510ab2a33f933f0ba7679e066f980373caf9 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Tue, 12 May 2026 17:10:35 +0300 Subject: [PATCH] nix: add cargo-nextets to devshell; minor cleanup Signed-off-by: NotAShelf Change-Id: Ie10228eac138766923d6325f4b06070f6a6a6964 --- nix/shell.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/nix/shell.nix b/nix/shell.nix index 4584b59..e71bf12 100644 --- a/nix/shell.nix +++ b/nix/shell.nix @@ -5,13 +5,14 @@ rustfmt, clippy, taplo, - rust-analyzer-unwrapped, - rustPlatform, + rust-analyzer, + cargo-nextest, }: mkShell { name = "rust"; - packages = [ + strictDeps = true; + nativeBuildInputs = [ rustc cargo @@ -19,8 +20,8 @@ mkShell { clippy cargo taplo - rust-analyzer-unwrapped - ]; + rust-analyzer - env.RUST_SRC_PATH = "${rustPlatform.rustLibSrc}"; + cargo-nextest + ]; }