{ pkgs ? import {} }: pkgs.mkShell rec { name = "shell-rust"; nativeBuildInputs = with pkgs; [ rustc cargo pkg-config ]; buildInputs = with pkgs; [ libxkbcommon ]; LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath buildInputs; }