Open t-taylor opened 1 year ago
The solution for me was to run in a nix-shell
with the following shell.nix
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
buildInputs = with pkgs; [cargo];
shellHook = ''
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${
with pkgs;
lib.makeLibraryPath [
libGL
xorg.libX11
xorg.libXi
xorg.libXcursor
xorg.libXrandr
]
}"
'';
}
After executing
cargo run
I get the following error:As well as the first set of benchmark statements.
running on nixos with hyprland wayland window manager.