update shell.nix

This commit is contained in:
Vinzenz Schroeter 2024-06-26 17:23:52 +02:00
parent 6101e91615
commit 0fff7a20d0

View file

@ -1,11 +1,14 @@
{pkgs ? import <nixpkgs> {}}: {pkgs ? import <nixpkgs> {}}:
pkgs.mkShell { pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [ nativeBuildInputs = with pkgs.buildPackages; [
rustup rustc cargo gcc rustfmt clippy
pkg-config pkg-config
xe xe
lzma lzma
libxkbcommon libxkbcommon
wayland wayland
]; ];
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
} }