servicepoint-simulator/shell.nix

15 lines
272 B
Nix
Raw Normal View History

2024-05-26 10:50:29 +02:00
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
2024-06-26 17:23:52 +02:00
rustc cargo gcc rustfmt clippy
2024-05-26 10:50:29 +02:00
pkg-config
xe
lzma
libxkbcommon
wayland
];
2024-06-26 17:23:52 +02:00
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
2024-05-17 21:28:51 +02:00
}