From 20ea1354be10e3f1e7381df4b1048d5a7bf3ebad Mon Sep 17 00:00:00 2001 From: Vinzenz Schroeter Date: Tue, 25 Jun 2024 22:10:33 +0200 Subject: [PATCH] include rust tools in shell instead of rustup --- shell.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 0555690..4b4eeca 100644 --- a/shell.nix +++ b/shell.nix @@ -1,11 +1,16 @@ {pkgs ? import {}}: pkgs.mkShell { nativeBuildInputs = with pkgs.buildPackages; [ - rustup + rustc cargo gcc rustfmt clippy + pkg-config xe lzma cargo-tarpaulin gnumake + + # dotnet-sdk_8 ]; + + RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}"; }