mirror of
https://github.com/kaesaecracker/servicepoint-simulator.git
synced 2025-01-18 10:30:14 +01:00
15 lines
272 B
Nix
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}";
|
|
}
|