From 0fff7a20d0bf249d37acda71d072b4f21807e4e3 Mon Sep 17 00:00:00 2001 From: Vinzenz Schroeter Date: Wed, 26 Jun 2024 17:23:52 +0200 Subject: [PATCH] update shell.nix --- shell.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index c781cf1..37dc58d 100644 --- a/shell.nix +++ b/shell.nix @@ -1,11 +1,14 @@ {pkgs ? import {}}: pkgs.mkShell { nativeBuildInputs = with pkgs.buildPackages; [ - rustup + rustc cargo gcc rustfmt clippy + pkg-config xe lzma libxkbcommon wayland ]; + + RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}"; }