include rust tools in shell instead of rustup

This commit is contained in:
Vinzenz Schroeter 2024-06-25 22:10:33 +02:00
parent a4189e2a86
commit 20ea1354be

View file

@ -1,11 +1,16 @@
{pkgs ? import <nixpkgs> {}}:
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}";
}