feat: updated shell.nix

This commit is contained in:
Nikita Podvirnyi 2024-05-26 20:56:39 +02:00
parent 222eb72da9
commit d8a43562f8
No known key found for this signature in database
GPG key ID: 859D416E5142AFF3

View file

@ -16,9 +16,8 @@ let
in pkgs.mkShell { in pkgs.mkShell {
nativeBuildInputs = with pkgs; [ nativeBuildInputs = with pkgs; [
pkgs-unstable.rustc pkgs-unstable.rustup
pkgs-unstable.rustfmt pkgs-unstable.rustfmt
pkgs-unstable.cargo
pkgs-unstable.clippy pkgs-unstable.clippy
gcc gcc
@ -34,7 +33,4 @@ in pkgs.mkShell {
libadwaita libadwaita
]; ];
RUST_SRC_PATH = "${pkgs-unstable.rust.packages.stable.rustPlatform.rustLibSrc}";
RUST_BACKTRACE = 1;
} }