servicepoint-simulator/shell.nix
Vinzenz Schroeter 0fff7a20d0 update shell.nix
2024-06-27 20:15:58 +02:00

15 lines
272 B
Nix

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